ejecutar_leaflet <- T
reproducir_desde_cero <- F
if(reproducir_desde_cero) {
system('rm -r grass-data-test')
}
library(rgrass7)
library(sp)
library(sf)
library(raster)
gisdbase <- 'grass-data-test' #Base de datos de GRASS GIS
wd <- getwd() #Directorio de trabajo
wd
## [1] "/home/cinthiavandepool/tesis-brujuelas-cinthia"
loc <- initGRASS(gisBase = "/usr/lib/grass78/",
home = wd,
gisDbase = paste(wd, gisdbase, sep = '/'),
location = 'cumayasa',
mapset = "PERMANENT",
override = TRUE)
#Muestra la definición de la región
gmeta()
## gisdbase /home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test
## location cumayasa
## mapset PERMANENT
## rows 1
## columns 1
## north 1
## south 0
## west 0
## east 1
## nsres 1
## ewres 1
## projection NA
#Definir ruta del DEM
dem <- 'dem-cuencas-brujuelas-cumayasa.tif'
#Definir la proyección de la región basada en DEM
execGRASS(
cmd = 'g.proj',
flags = c('t','c'),
georef=dem)
## Default region was updated to the new projection, but if you have multiple
## mapsets `g.region -d` should be run in each to update the region from the
## default
## Projection information updated
#Importar mapa raster
#r.in.gdal importa la fuente a GRASS
execGRASS(
cmd = 'r.in.gdal',
flags=c('overwrite','quiet'),
parameters=list(
input=dem,
output='dem'
)
)
#Actualizar la extensión de la región al DEM, sólo por precaución
execGRASS(
cmd = 'g.region',
parameters=list(
raster = 'dem',
align = 'dem'
)
)
par(mfrow=c(1,1)) #para que se muestre un solo plot a la vez
#Tallado del DEM
execGRASS(
'v.in.ogr',
flags = 'overwrite',
parameters = list(
input = 'red_mtn50k_cleaned_largos.gpkg',
output = 'red_mtn50k_cleaned_largos'
)
)
## Check if OGR layer <red_mtn50k_cleaned_largos> contains polygons...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Creating attribute table for layer <red_mtn50k_cleaned_largos>...
## Default driver / database set to:
## driver: sqlite
## database: $GISDBASE/$LOCATION_NAME/$MAPSET/sqlite/sqlite.db
## Importing 389 features (OGR layer <red_mtn50k_cleaned_largos>)...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## -----------------------------------------------------
## Building topology for vector map <red_mtn50k_cleaned_largos@PERMANENT>...
## Registering primitives...
execGRASS(
'r.univar',
flags = 't',
parameters = list(
map = 'dem'
)
)
## non_null_cells|null_cells|min|max|range|mean|mean_of_abs|stddev|variance|coeff_var|sum|sum_abs
## 26317513|3332542|-7.10952377319336|517.373901367188|524.483425140381|69.1151436841546|69.1197862465191|57.3550948731415|3289.60690790706|82.9848450221637|1818938692.40461|1819060873.09999
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
execGRASS(
'v.to.rast',
flags = 'overwrite',
parameters = list(
input = 'red_mtn50k_cleaned_largos',
output = 'red_mtn50k_cleaned_largos',
use = 'val',
value = 1
)
)
## Warning in execGRASS("v.to.rast", flags = "overwrite", parameters = list(input = "red_mtn50k_cleaned_largos", : The command:
## v.to.rast --overwrite input=red_mtn50k_cleaned_largos output=red_mtn50k_cleaned_largos use=val value=1
## produced at least one warning during execution:
## WARNING: No areas selected from vector map <red_mtn50k_cleaned_largos>
## Reading features...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## WARNING: No areas selected from vector map <red_mtn50k_cleaned_largos>
## Reading features...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
execGRASS(
'r.null',
parameters = list(
map = 'red_mtn50k_cleaned_largos',
null = 0
)
)
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
#r.null map=red_mtn50k_cleaned_largos null=0
execGRASS(
'r.mapcalc',
flags = 'overwrite',
parameters = list(
expression = 'stddem = (dem - -7.10952377319336) / (517.373901367188 - -7.10952377319336)'
)
)
execGRASS(
'r.mapcalc',
flags = 'overwrite',
parameters = list(
expression = 'stddemburn = stddem - red_mtn50k_cleaned_largos'
)
)
use_sp()
# stddemburn <- readRAST('stddemburn')
# plot(stddemburn)
execGRASS(
'r.mapcalc',
flags = 'overwrite',
parameters = list(
expression = 'dem_tallado = (stddemburn * (517.373901367188 - -7.10952377319336)) -7.10952377319336'
)
)
#dem_tallado_para_ver <- readRAST('dem_tallado')
#plot(dem_tallado_para_ver)
#Declarando depresiones.
execGRASS(
'v.in.ogr',
flags = 'overwrite',
parameters = list(
input = 'depresiones_para_editar.gpkg',
output = 'depresiones_para_editar'
)
)
## Check if OGR layer <depresiones_para_editar> contains polygons...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Creating attribute table for layer <depresiones_para_editar>...
## Column name <cat> renamed to <cat_>
## Importing 1549 features (OGR layer <depresiones_para_editar>)...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## -----------------------------------------------------
## Registering primitives...
##
## -----------------------------------------------------
## Cleaning polygons
## -----------------------------------------------------
## Breaking polygons...
## Breaking polygons (pass 1: select break points)...
## 1% 3% 5% 7% 9% 11% 13% 15% 17% 19% 21% 23% 25% 27% 29% 31% 33% 35% 37% 39% 41% 43% 45% 47% 49% 51% 53% 55% 57% 59% 61% 63% 65% 67% 69% 71% 73% 75% 77% 79% 81% 83% 85% 87% 89% 91% 93% 95% 97% 99% 100%
## Breaking polygons (pass 2: break at selected points)...
## 1% 3% 5% 7% 9% 11% 13% 15% 17% 19% 21% 23% 25% 27% 29% 31% 33% 35% 37% 39% 41% 43% 45% 47% 49% 51% 53% 55% 57% 59% 61% 63% 65% 67% 69% 71% 73% 75% 77% 79% 81% 83% 85% 87% 89% 91% 93% 95% 97% 99% 100%
## -----------------------------------------------------
## Removing duplicates...
## 1% 3% 5% 7% 9% 11% 13% 15% 17% 19% 21% 23% 25% 27% 29% 31% 33% 35% 37% 39% 41% 43% 45% 47% 49% 51% 53% 55% 57% 59% 61% 63% 65% 67% 69% 71% 73% 75% 77% 79% 81% 83% 85% 87% 89% 91% 93% 95% 97% 99% 100%
## -----------------------------------------------------
## Breaking boundaries...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## -----------------------------------------------------
## Removing duplicates...
## 1% 3% 5% 7% 9% 11% 13% 15% 17% 19% 21% 23% 25% 27% 29% 31% 33% 35% 37% 39% 41% 43% 45% 47% 49% 51% 53% 55% 57% 59% 61% 63% 65% 67% 69% 71% 73% 75% 77% 79% 81% 83% 85% 87% 89% 91% 93% 95% 97% 99% 100%
## -----------------------------------------------------
## Cleaning boundaries at nodes...
## 1% 3% 5% 7% 9% 11% 13% 15% 17% 19% 21% 23% 25% 27% 29% 31% 33% 35% 37% 39% 41% 43% 45% 47% 49% 51% 53% 55% 57% 59% 61% 63% 65% 67% 69% 71% 73% 75% 77% 79% 81% 83% 85% 87% 89% 91% 93% 95% 97% 99% 100%
## -----------------------------------------------------
## Merging boundaries...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## -----------------------------------------------------
## Removing dangles...
## 1% 3% 5% 7% 9% 11% 13% 15% 17% 19% 21% 23% 25% 27% 29% 31% 33% 35% 37% 39% 41% 43% 45% 47% 49% 51% 53% 55% 57% 59% 61% 63% 65% 67% 69% 71% 73% 75% 77% 79% 81% 83% 85% 87% 89% 91% 93% 95% 97% 99% 100%
## -----------------------------------------------------
## Building areas...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98%-----------------------------------------------------
## Removing bridges...
## 100%
## -----------------------------------------------------
## Registering primitives...
##
## Building areas...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Attaching islands...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## -----------------------------------------------------
## Finding centroids for OGR layer <depresiones_para_editar>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## -----------------------------------------------------
## Writing centroids...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## -----------------------------------------------------
## 1549 input polygons
## Total area: 2.43819E+06 (1549 areas)
## -----------------------------------------------------
## Copying features...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## Building topology for vector map <depresiones_para_editar@PERMANENT>...
## Registering primitives...
##
## Building areas...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Attaching islands...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Attaching centroids...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
execGRASS(
'v.to.rast',
flags = 'overwrite',
parameters = list(
input = 'depresiones_para_editar',
output = 'depresiones_todas',
use = 'val',
value = 1
)
)
## Reading areas...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
#Hidrologia computacional
# Calcular parámetros hidrográficos de interés usando `r.watershed`
execGRASS(
"r.watershed",
flags = c('overwrite','quiet'),
parameters = list(
elevation = "dem_tallado",
accumulation = "accum-de-rwshed",
depression = 'depresiones_todas',
stream = "stream-de-rwshed",
drainage = "drainage-dir-de-rwshed",
basin = 'basins',
half_basin = 'half-basins',
threshold = 80
)
)
execGRASS(
'r.water.outlet',
flags = 'overwrite',
parameters = list(
input = 'drainage-dir-de-rwshed',
output = 'cuenca_cumayasa',
coordinates = c(491156.816731,2034271.805136)
)
)
## 0% 6% 12% 18% 24% 30% 36% 42% 48% 54% 60% 66% 72% 78% 84% 90% 96% 100%
execGRASS(
"r.to.vect",
flags = c('overwrite','quiet'),
parameters = list(
input = 'cuenca_cumayasa',
output = 'cuenca_cumayasa',
type = 'area'
)
)
execGRASS(
'v.out.ogr',
flags = c('overwrite','quiet'),
parameters = list(
input = 'cuenca_cumayasa',
output = 'cuenca_cumayasa',
format = 'GeoJSON'
)
)
## Warning in execGRASS("v.out.ogr", flags = c("overwrite", "quiet"), parameters = list(input = "cuenca_cumayasa", : The command:
## v.out.ogr --overwrite --quiet input=cuenca_cumayasa output=cuenca_cumayasa format=GeoJSON
## produced at least one warning during execution:
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
plot(readVECT('cuenca_cumayasa'))
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/885.0.gpkg output_layer=cuenca_cumayasa format=GPKG
## produced at least one warning during execution:
## Exporting 2 areas (may take some time)...
## 50% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 1 feature (Polygon type) written to <cuenca_cumayasa>
## (GPKG format).
## Exporting 2 areas (may take some time)...
## 50% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 1 feature (Polygon type) written to <cuenca_cumayasa>
## (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/885.0.gpkg", layer: "cuenca_cumayasa"
## with 1 features
## It has 3 fields

#Importar un mapa vectorial también
demext <- 'cuenca_cumayasa.geojson' #Es necesario para las variables de terreno
execGRASS(
cmd = 'v.in.ogr',
flags=c('overwrite','quiet'),
parameters=list(
input=demext,
output='dem_extent'
)
)
#plot(st_read(demext))
#Imprimir lista de mapas ráster y vectoriales dentro en la región/localización activa
execGRASS(
'g.list',
flags = 't',
parameters = list(
type = c('raster', 'vector')
)
)
## raster/accum-de-rwshed
## raster/basins
## raster/cuenca_cumayasa
## raster/dem
## raster/dem_tallado
## raster/depresiones_todas
## raster/drainage-dir-de-rwshed
## raster/half-basins
## raster/red_mtn50k_cleaned_largos
## raster/stddem
## raster/stddemburn
## raster/stream-de-rwshed
## vector/cuenca_cumayasa
## vector/dem_extent
## vector/depresiones_para_editar
## vector/red_mtn50k_cleaned_largos
#Cargar en R el DEM (mapa ráster)
use_sp()
dem_sp <- readRAST('dem')
## Creating BIL support files...
## Exporting raster as floating values (bytes=8)
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
op <- par()
# plot(dem_sp)
#Cargar a R el mapa vectorial de una cuenca que se encuentra alojado fuera de GRASS, hacer el plot y representar la cuenca del rio cumayasa superpuesta
rutacumayasa <- demext
cumayasa <- st_read(rutacumayasa)
## Reading layer `cuenca_cumayasa' from data source `/home/cinthiavandepool/tesis-brujuelas-cinthia/cuenca_cumayasa.geojson' using driver `GeoJSON'
## Simple feature collection with 1 feature and 3 fields
## geometry type: POLYGON
## dimension: XY
## bbox: xmin: 485451.5 ymin: 2034185 xmax: 504311.7 ymax: 2066785
## projected CRS: WGS 84 / UTM zone 19N
plot(dem_sp)
plot(cumayasa, add=T, col='transparent', border='black', lwd=5);par(op[c('mfrow','mar')])
## Warning in plot.sf(cumayasa, add = T, col = "transparent", border =
## "black", : ignoring all but the first attribute

#Analizar el DEM dentro de la cuenca del rio cumayasa
dem_r0 <- raster(dem_sp)
dem_r1 <- crop(dem_r0, cumayasa)
dem_cumayasa <- mask(dem_r1, cumayasa)
plot(dem_cumayasa)

summary(dem_cumayasa)
## Warning in .local(object, ...): summary is an estimate based on a sample of 1e+05 cells (2.54% of all cells)
## dem
## Min. 0.2548409
## 1st Qu. 68.8205509
## Median 78.5113831
## 3rd Qu. 97.1890907
## Max. 299.5260620
## NA's 0.0000000
hist(dem_cumayasa)
## Warning in .hist1(x, maxpixels = maxpixels, main = main, plot = plot, ...):
## 3% of the raster cells were used. 100000 values used.

#Obtener variables de terreno básicas con el paquete raster dentro de R
pend_cumayasa <- terrain(x = dem_cumayasa, opt = 'slope', unit = 'degrees')
plot(pend_cumayasa)

# Traer capas a R
#Usar Spatial*
library(sp)
use_sp()
#Paquete manejo de los raster
library(raster)
#DEM
dem_para_leaflet <- raster(readRAST('dem'))
## Creating BIL support files...
## Exporting raster as floating values (bytes=8)
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
#Basins
basins <- raster(readRAST('basins'))
## Creating BIL support files...
## Exporting raster as integer values (bytes=4)
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
#Stream network
stream <- raster(readRAST('stream-de-rwshed'))
## Creating BIL support files...
## Exporting raster as integer values (bytes=4)
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
stream3857 <- projectRaster(stream, crs = CRS("+init=epsg:3857"), method = 'ngb')
#Generar un vectorial de extensión de capa en EPSG:4326
e <- extent(stream)
e <- as(e, 'SpatialPolygons')
proj4string(e) <- CRS("+init=epsg:32619")
e <- spTransform(e, CRSobj = CRS("+init=epsg:4326"))
# Visualizar capas con `leaflet`
library(leaflet)
library(leafem)
if(ejecutar_leaflet) {
leaflet() %>%
addProviderTiles(providers$OpenStreetMap, group = 'terrain') %>%
addRasterImage(dem_para_leaflet, group='DEM', opacity = 0.5) %>%
addRasterImage(
ratify(basins),
group='basins', opacity = 0.7,
colors = sample(rep(RColorBrewer::brewer.pal(12, 'Set3'),1000))) %>%
addRasterImage(stream3857, project = F, group='str', opacity = 0.7, method = 'ngb', colors = 'blue') %>%
addLayersControl(
overlayGroups = c('terrain','DEM','basins','str'),
options = layersControlOptions(collapsed=FALSE)) %>%
addHomeButton(extent(e), 'Ver todo')
}
## Error in addRasterImage(., dem_para_leaflet, group = "DEM", opacity = 0.5): Raster image too large; 11877239 bytes is greater than maximum 4194304 bytes
# Obtener las coordenadas de la desembocadura de la cuenca de interés
library(mapview)
mapa_red_coord_desemb <- mapview(
stream3857, method='ngb', col.regions = 'blue',
legend = FALSE, label = FALSE,
maxpixels = 29743620 #ANTES: maxpixels = 910425
)
mapa_red_coord_desemb

#Convertir las coordenadas lat/lon a EPSG:32619
my_trans <- function(coords = NULL) {
require(sp)
pt <- SpatialPoints(matrix(coords, ncol = 2), CRS("+init=epsg:4326"))
foo <- spTransform(pt, CRSobj = CRS("+init=epsg:32619"))
bar <- as.vector(coordinates(foo))
return(bar)
}
cumayasa_out <- my_trans(coords = c(-69.08398956002, 18.39925229788)) # Originalmente, c(491156.816731,2034271.805136)
cumayasa_out #491152 2034298
## [1] 491128.9 2034360.2
# Extraer la cuenca de interés
execGRASS(
"r.water.outlet",
flags = c('overwrite','quiet'),
parameters = list(
input = 'drainage-dir-de-rwshed',
output = 'cuenca_cumayasa',
coordinates = cumayasa_out
)
)
## Convertir la cuenca a vectorial en GRASS
execGRASS(
"r.to.vect",
flags = c('overwrite','quiet'),
parameters = list(
input = 'cuenca_cumayasa',
output = 'cuenca_cumayasa',
type = 'area'
)
)
## Warning in execGRASS("r.to.vect", flags = c("overwrite", "quiet"), parameters = list(input = "cuenca_cumayasa", : The command:
## r.to.vect --overwrite --quiet input=cuenca_cumayasa output=cuenca_cumayasa type=area
## produced at least one warning during execution:
## WARNING: Vector map <cuenca_cumayasa> already exists and will be
## overwritten
## WARNING: Vector map <cuenca_cumayasa> already exists and will be
## overwritten
execGRASS(
"v.buffer",
flags = 'overwrite',
parameters = list(
input = 'cuenca_cumayasa',
output = 'cuenca_cumayasa_buffer',
distance = 100,
type = 'area'
)
)
## Buffering areas...
## 50% 100%
## Cleaning buffers...
## Building parts of topology...
## Building topology for vector map <cuenca_cumayasa_buffer@PERMANENT>...
## Registering primitives...
##
## Snapping boundaries...
## Reading features...
## Snap vertices Pass 1: select points
## 0% 100%
## Snap vertices Pass 2: assign anchor vertices
## 4% 9% 14% 19% 24% 29% 34% 39% 44% 49% 54% 59% 64% 69% 74% 79% 84% 89% 94% 99% 100%
## Snap vertices Pass 3: snap to assigned points
## 0% 100%
## Breaking polygons...
## Breaking polygons (pass 1: select break points)...
## 100%
## Breaking polygons (pass 2: break at selected points)...
## 100%
## Removing duplicates...
## 100%
## Breaking boundaries...
## 0% 100%
## Removing duplicates...
## 100%
## Cleaning boundaries at nodes
## 100%
## Building topology for vector map <cuenca_cumayasa_buffer@PERMANENT>...
## Building areas...
## 0% 100%
## Removing dangles...
## 100%
## Removing bridges...
## 100%
## Attaching islands...
## Building topology for vector map <cuenca_cumayasa_buffer@PERMANENT>...
## Attaching islands...
## 0% 100%
## Calculating centroids for all areas...
## 0% 100%
## Generating list of boundaries to be deleted...
## 100%
## Deleting boundaries...
## 100%
## Calculating centroids for areas...
## 100%
## Building topology for vector map <cuenca_cumayasa_buffer@PERMANENT>...
## Registering primitives...
##
## Building areas...
## 0% 100%
## Attaching islands...
## 0% 100%
## Attaching centroids...
## 0% 100%
execGRASS(
"r.mask",
flags = c('verbose','overwrite','quiet'),
parameters = list(
vector = 'cuenca_cumayasa_buffer' #NOTA: USANDO BUFFER!!!!!!!!!!!!!
)
)
## Reading areas...
## 0% 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Raster MASK created
## All subsequent raster operations will be limited to the MASK area. Removing
## or renaming raster map named 'MASK' will restore raster operations to
## normal.
## Mostrar lista nuevamente
execGRASS(
'g.list',
flags = 't',
parameters = list(
type = c('raster', 'vector')
)
)
## raster/MASK
## raster/accum-de-rwshed
## raster/basins
## raster/cuenca_cumayasa
## raster/dem
## raster/dem_tallado
## raster/depresiones_todas
## raster/drainage-dir-de-rwshed
## raster/half-basins
## raster/red_mtn50k_cleaned_largos
## raster/stddem
## raster/stddemburn
## raster/stream-de-rwshed
## vector/cuenca_cumayasa
## vector/cuenca_cumayasa_buffer
## vector/dem_extent
## vector/depresiones_para_editar
## vector/red_mtn50k_cleaned_largos
## Traer a R la cuenca
cumayasa_bas <- readVECT('cuenca_cumayasa')
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/180.0.gpkg output_layer=cuenca_cumayasa format=GPKG
## produced at least one warning during execution:
## Exporting 2 areas (may take some time)...
## 50% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 1 feature (Polygon type) written to <cuenca_cumayasa>
## (GPKG format).
## Exporting 2 areas (may take some time)...
## 50% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 1 feature (Polygon type) written to <cuenca_cumayasa>
## (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/180.0.gpkg", layer: "cuenca_cumayasa"
## with 1 features
## It has 3 fields
cumayasa_bas
## class : SpatialPolygonsDataFrame
## features : 1
## extent : 485451.5, 504311.7, 2034323, 2066785 (xmin, xmax, ymin, ymax)
## crs : +proj=utm +zone=19 +datum=WGS84 +units=m +no_defs +ellps=WGS84 +towgs84=0,0,0
## variables : 3
## names : cat, value, label
## value : 1, 1,
plot(cumayasa_bas)

cumayasa_bas4326 <- spTransform(cumayasa_bas, CRSobj = CRS("+init=epsg:4326"))
if(ejecutar_leaflet) { #pedir explicacion de esta condicion
leaflet() %>%
addProviderTiles(providers$OpenStreetMap) %>%
addPolygons(data = cumayasa_bas4326) %>%
leafem::addHomeButton(extent(cumayasa_bas4326), 'Ver cuenca')
}

#Usar la cuenca del rio cumayasa como máscara
# Extraer la red de drenaje de la cuenca de interés
execGRASS(
'r.stream.extract',
flags = 'overwrite',
parameters = list(
elevation= 'dem_tallado',
accumulation= 'accum-de-rwshed',
depression= 'depresiones_todas',
threshold= 160,
stream_raster= 'rstrm_cumayasa',
stream_vector= 'rstrm_cumayasa',
direction= 'rstrm_direccion'
)
)
## Loading input raster maps...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Initializing A* search...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## A* Search...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Extracting streams...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Thinning stream segments...
## 0% 3% 7% 11% 15% 18% 22% 26% 30% 33% 37% 41% 45% 49% 52% 56% 60% 64% 67% 71% 75% 79% 83% 86% 90% 94% 98% 100%
## Writing output raster maps...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Writing vector map <rstrm_cumayasa>...
## 0% 3% 7% 11% 15% 18% 22% 26% 30% 33% 37% 41% 45% 49% 52% 56% 60% 64% 67% 71% 75% 79% 83% 86% 90% 94% 98% 100%
## Writing attribute data...
## Building topology for vector map <rstrm_cumayasa@PERMANENT>...
## Registering primitives...
#Crear mapas de órdenes de red
execGRASS(
"r.stream.order",
flags = c('overwrite','quiet'),
parameters = list(
stream_rast = 'rstrm_cumayasa',
direction = 'rstrm_direccion',
elevation = 'dem_tallado',
accumulation = 'accum-de-rwshed',
stream_vect = 'order_all',
strahler = 'order-strahler',
horton = 'order-horton',
shreve = 'order-shreve',
hack = 'order-hack-gravelius',
topo = 'order-topology'
)
)
# Mostrar lista nuevamente
execGRASS(
'g.list',
flags = 't',
parameters = list(
type = c('raster', 'vector')
)
)
## raster/MASK
## raster/accum-de-rwshed
## raster/basins
## raster/cuenca_cumayasa
## raster/dem
## raster/dem_tallado
## raster/depresiones_todas
## raster/drainage-dir-de-rwshed
## raster/half-basins
## raster/order-hack-gravelius
## raster/order-horton
## raster/order-shreve
## raster/order-strahler
## raster/order-topology
## raster/red_mtn50k_cleaned_largos
## raster/rstrm_cumayasa
## raster/rstrm_direccion
## raster/stddem
## raster/stddemburn
## raster/stream-de-rwshed
## vector/cuenca_cumayasa
## vector/cuenca_cumayasa_buffer
## vector/dem_extent
## vector/depresiones_para_editar
## vector/order_all
## vector/red_mtn50k_cleaned_largos
## vector/rstrm_cumayasa
# Visualizar la red con leaflet
#Simbología única
order <- readVECT('order_all')
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=order_all type=line layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/635.0.gpkg output_layer=order_all format=GPKG
## produced at least one warning during execution:
## WARNING: 2926 points found, but not requested to be exported. Verify 'type'
## parameter.
## Exporting 2873 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 2873 features (Line String type) written to <order_all>
## (GPKG format).
## WARNING: 2926 points found, but not requested to be exported. Verify 'type'
## parameter.
## Exporting 2873 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 2873 features (Line String type) written to <order_all>
## (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/635.0.gpkg", layer: "order_all"
## with 2873 features
## It has 24 fields
order4326 <- spTransform(order, CRSobj = CRS("+init=epsg:4326"))
if(ejecutar_leaflet) {
leaflet() %>%
addProviderTiles(providers$OpenStreetMap, group = 'terrain') %>%
addPolylines(
data = order4326, weight = 3, opacity = 0.7, group = 'order',
label = ~as.character(strahler),
highlightOptions = highlightOptions(color = "white",
weight = 5, bringToFront = F, opacity = 1),
labelOptions = labelOptions(noHide = T,
style = list(
"font-size" = "8px",
"background" = "rgba(255, 255, 255, 0.5)",
"background-clip" = "padding-box",
"padding" = "1px"))) %>%
leafem::addHomeButton(extent(order4326), 'Ver todo') %>%
addLayersControl(
overlayGroups = c('terrain','order'),
options = layersControlOptions(collapsed=FALSE))
}

#Simbología aplicando grosor según orden de red
if(ejecutar_leaflet) {
leaflet() %>%
addProviderTiles(providers$OpenStreetMap, group = 'terrain') %>%
addPolylines(
data = order4326, weight = order4326$strahler*1.1, opacity = 0.7, group = 'order',
label = ~as.character(strahler),
highlightOptions = highlightOptions(color = "white",
weight = 5, bringToFront = F, opacity = 1),
labelOptions = labelOptions(noHide = F)) %>%
leafem::addHomeButton(extent(order4326), 'Ver todo') %>%
addLayersControl(
overlayGroups = c('terrain','order'),
options = layersControlOptions(collapsed=FALSE))
}

#Delimitar cuencas según orden de red de Strahler
#Obtener órdenes de red mínimo y máximo
#Estadísticas para obtener los valores mínimo y máximo del orden de red de Strahler
rinfo.ordstra <- execGRASS(
'r.info',
flags = 'r',
parameters = list(
map = 'order-strahler'
)
)
## min=1
## max=6
#Órdenes de red mínimo y máximo
minmaxord <- as.numeric(
stringr::str_extract_all(
attributes(rinfo.ordstra)$resOut,
"[0-9]+"
)
)
minmaxord
## [1] 1 6
### Delimitar cuencas, convertirlas de ráster a vectorial
sapply(
min(minmaxord):max(minmaxord),
function(x){
execGRASS(
"r.stream.basins",
flags = c('overwrite','c','quiet'),
parameters = list(
direction = 'rstrm_direccion',
stream_rast = 'order-strahler',
cats = as.character(x),
basins = paste0('cuenca_cumayasa',x)
)
)
execGRASS(
"r.to.vect",
flags=c('overwrite','quiet'),
parameters = list(
input = paste0('cuenca_cumayasa',x),
output = paste0('cuenca_cumayasa',x),
type = 'area'
)
)
}
)
## [1] 0 0 0 0 0 0
#Representar las cuencas con leaflet
if(ejecutar_leaflet) {
sapply(
min(minmaxord):max(minmaxord),
function(x){
assign(
paste0('orden', x),
spTransform(readVECT(paste0('cuenca_cumayasa',x)), CRSobj = CRS("+init=epsg:4326")),
envir = .GlobalEnv)
}
)
paleta <- RColorBrewer::brewer.pal(12, 'Set3')
leaflet() %>%
addProviderTiles(providers$OpenStreetMap, group = 'terrain') %>%
addPolygons(data = orden4, stroke = T, weight = 2,
color = ~paleta, fillOpacity = 0.4, group = 'O4') %>%
addPolygons(data = orden3, stroke = T, weight = 2,
color = ~paleta, fillOpacity = 0.4, group = 'O3') %>%
addPolygons(data = orden2, stroke = T, weight = 2,
color = ~paleta, fillOpacity = 0.4, group = 'O2') %>%
addPolygons(data = orden1, stroke = T, weight = 2,
color = ~paleta, fillOpacity = 0.4, group = 'O1') %>%
addPolylines(
data = order4326, weight = order4326$strahler*1.1,
opacity = 0.7, group = 'str_order') %>%
leafem::addHomeButton(extent(order4326), 'Ver todo') %>%
addLayersControl(
overlayGroups = c('terrain','O1','O2','O3','O4','str_order'),
options = layersControlOptions(collapsed=FALSE))
}
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa1 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/397.0.gpkg output_layer=cuenca_cumayasa1 format=GPKG
## produced at least one warning during execution:
## Exporting 1928 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## WARNING: 175 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 1753 features (Polygon type) written to
## <cuenca_cumayasa1> (GPKG format).
## Exporting 1928 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## WARNING: 175 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 1753 features (Polygon type) written to
## <cuenca_cumayasa1> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/397.0.gpkg", layer: "cuenca_cumayasa1"
## with 1753 features
## It has 3 fields
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa2 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/362.0.gpkg output_layer=cuenca_cumayasa2 format=GPKG
## produced at least one warning during execution:
## Exporting 391 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## WARNING: 31 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 360 features (Polygon type) written to
## <cuenca_cumayasa2> (GPKG format).
## Exporting 391 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## WARNING: 31 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 360 features (Polygon type) written to
## <cuenca_cumayasa2> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/362.0.gpkg", layer: "cuenca_cumayasa2"
## with 360 features
## It has 3 fields
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa3 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/143.0.gpkg output_layer=cuenca_cumayasa3 format=GPKG
## produced at least one warning during execution:
## Exporting 78 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 60% 66% 73% 79% 85% 91% 97% 100%
## WARNING: 4 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 74 features (Polygon type) written to
## <cuenca_cumayasa3> (GPKG format).
## Exporting 78 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 60% 66% 73% 79% 85% 91% 97% 100%
## WARNING: 4 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 74 features (Polygon type) written to
## <cuenca_cumayasa3> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/143.0.gpkg", layer: "cuenca_cumayasa3"
## with 74 features
## It has 3 fields
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa4 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/361.0.gpkg output_layer=cuenca_cumayasa4 format=GPKG
## produced at least one warning during execution:
## Exporting 13 areas (may take some time)...
## 7% 15% 23% 30% 38% 46% 53% 61% 69% 76% 84% 92% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 12 features (Polygon type) written to
## <cuenca_cumayasa4> (GPKG format).
## Exporting 13 areas (may take some time)...
## 7% 15% 23% 30% 38% 46% 53% 61% 69% 76% 84% 92% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 12 features (Polygon type) written to
## <cuenca_cumayasa4> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/361.0.gpkg", layer: "cuenca_cumayasa4"
## with 12 features
## It has 3 fields
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa5 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/458.0.gpkg output_layer=cuenca_cumayasa5 format=GPKG
## produced at least one warning during execution:
## Exporting 3 areas (may take some time)...
## 33% 66% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 2 features (Polygon type) written to <cuenca_cumayasa5>
## (GPKG format).
## Exporting 3 areas (may take some time)...
## 33% 66% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 2 features (Polygon type) written to <cuenca_cumayasa5>
## (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/458.0.gpkg", layer: "cuenca_cumayasa5"
## with 2 features
## It has 3 fields
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa6 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/749.0.gpkg output_layer=cuenca_cumayasa6 format=GPKG
## produced at least one warning during execution:
## Exporting 2 areas (may take some time)...
## 50% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 1 feature (Polygon type) written to <cuenca_cumayasa6>
## (GPKG format).
## Exporting 2 areas (may take some time)...
## 50% 100%
## WARNING: 1 feature without category was skipped. Features without category
## are written only when -c flag is given.
## v.out.ogr complete. 1 feature (Polygon type) written to <cuenca_cumayasa6>
## (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/749.0.gpkg", layer: "cuenca_cumayasa6"
## with 1 features
## It has 3 fields

#Estadísticas de red resumidas por orden de red.
execGRASS(
"r.stream.stats",
flags = c('overwrite','quiet','o'),
parameters = list(
stream_rast = 'order-strahler',
direction = 'rstrm_direccion',
elevation = 'dem_tallado',
output = 'cumayasa_stats.txt'
)
)
file.show('cumayasa_stats.txt')
d <- read.csv("cumayasa_stats.txt", skip=1, header=TRUE)
plot(num_of_streams~order, data=d, log="y")
mod <- lm(log10(num_of_streams)~order, data=d)
abline(mod)
text(2.5, 20,
paste0('logN = ',
round(mod$coefficients[[1]], 2),
' ',
ifelse(
mod$coefficients[[1]]<0,
round(mod$coefficients[[1]], 2),
paste0('+', round(mod$coefficients[[1]], 2))),
' ',
'u'))

rb <- 1/10^mod$coefficients[[2]]
rb
## [1] 4.594487
#Estadísticas de red ampliadas
execGRASS(
"r.stream.stats",
flags = c('overwrite','quiet'),
parameters = list(
stream_rast = 'order-strahler',
direction = 'rstrm_direccion',
elevation = 'dem_tallado',
output = 'cumayasa_stats_expanded.txt'
)
)
file.show('cumayasa_stats_expanded.txt')
#mapview(order, col.regions = 'blue', legend = FALSE) ----
mapview(order, col.regions = 'blue', legend = FALSE)

# Obtener cursos más largos (cargar función propia)
devtools::source_url('https://raw.githubusercontent.com/geofis/rgrass/master/lfp_network.R') #Cargada como función "LfpNetwork"
## SHA-1 hash of file is dc6536942605ffb3607fcffedcd017f8204038da
LfpNetwork(
xycoords = c(491128.9, 2034360.2),
suffix = 'cumayasa',
stream_vect = 'order_all',
direction = 'rstrm_direccion'
)
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491128.9,2034360.2 output=LfpNetwork_lfp_cumayasa
## produced at least one warning during execution:
## Building topology for vector map <LfpNetwork_lfp_cumayasa@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491128.9,2034360.2...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26317_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26317_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26317_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26317_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26317_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26317_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26317_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26317_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26317_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26317_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26317_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26317_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26317_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26317_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map <LfpNetwork_lfp_cumayasa@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26317_flds>
## Removing raster <r_lfp_26317_heads>
## Removing raster <r_lfp_26317_out>
## Removing vector <r_lfp_26317_heads>
## Removing vector <r_lfp_26317_lfp>
## Removing vector <r_lfp_26317_lfp2>
## Removing vector <r_lfp_26317_out>
## Removing vector <r_lfp_26317_path>
## Building topology for vector map <LfpNetwork_lfp_cumayasa@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491128.9,2034360.2...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26317_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26317_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26317_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26317_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26317_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26317_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26317_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26317_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26317_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26317_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26317_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26317_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26317_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26317_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map <LfpNetwork_lfp_cumayasa@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26317_flds>
## Removing raster <r_lfp_26317_heads>
## Removing raster <r_lfp_26317_out>
## Removing vector <r_lfp_26317_heads>
## Removing vector <r_lfp_26317_lfp>
## Removing vector <r_lfp_26317_lfp2>
## Removing vector <r_lfp_26317_out>
## Removing vector <r_lfp_26317_path>
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## Writing attributes...
## Building topology for vector map
## <LfpNetwork_tributaries_cumayasa@PERMANENT>...
## Registering primitives...
##
## v.select complete. 219 features written to output.
## Exporting 219 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 219 features (Line String type) written to
## <LfpNetwork_tributaries_cumayasa> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/18.0.gpkg", layer: "LfpNetwork_tributaries_cumayasa"
## with 219 features
## It has 24 fields
## Check if OGR layer <LfpNetwork_tributaries_preconf_cumayasa> contains
## polygons...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Creating attribute table for layer
## <LfpNetwork_tributaries_preconf_cumayasa>...
## Column name <cat> renamed to <cat_>
## Column name <Lines.NR> renamed to <Lines_NR>
## Column name <Lines.ID> renamed to <Lines_ID>
## Column name <Line.NR> renamed to <Line_NR>
## Importing 219 features (OGR layer
## <LfpNetwork_tributaries_preconf_cumayasa>)...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## -----------------------------------------------------
## Building topology for vector map
## <LfpNetwork_tributaries_preconf_cumayasa@PERMANENT>...
## Registering primitives...
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501445.162667577,2066228.76374221 output=LfpNetwork_lfp_tmp_cumayasa_stream_3
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_3@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501445.162667577,2066228.76374221...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26402_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26402_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26402_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26402_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26402_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26402_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26402_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26402_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26402_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26402_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26402_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26402_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26402_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26402_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_3@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26402_flds>
## Removing raster <r_lfp_26402_heads>
## Removing raster <r_lfp_26402_out>
## Removing vector <r_lfp_26402_heads>
## Removing vector <r_lfp_26402_lfp>
## Removing vector <r_lfp_26402_lfp2>
## Removing vector <r_lfp_26402_out>
## Removing vector <r_lfp_26402_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_3@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501445.162667577,2066228.76374221...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26402_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26402_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26402_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26402_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26402_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26402_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26402_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26402_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26402_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26402_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26402_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26402_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26402_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26402_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_3@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26402_flds>
## Removing raster <r_lfp_26402_heads>
## Removing raster <r_lfp_26402_out>
## Removing vector <r_lfp_26402_heads>
## Removing vector <r_lfp_26402_lfp>
## Removing vector <r_lfp_26402_lfp2>
## Removing vector <r_lfp_26402_out>
## Removing vector <r_lfp_26402_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500958.046326714,2065829.07853945 output=LfpNetwork_lfp_tmp_cumayasa_stream_4
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_4@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500958.046326714,2065829.07853945...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26459_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26459_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26459_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26459_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26459_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26459_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26459_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26459_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26459_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26459_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26459_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26459_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26459_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26459_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_4@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26459_flds>
## Removing raster <r_lfp_26459_heads>
## Removing raster <r_lfp_26459_out>
## Removing vector <r_lfp_26459_heads>
## Removing vector <r_lfp_26459_lfp>
## Removing vector <r_lfp_26459_lfp2>
## Removing vector <r_lfp_26459_out>
## Removing vector <r_lfp_26459_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_4@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500958.046326714,2065829.07853945...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26459_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26459_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26459_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26459_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26459_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26459_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26459_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26459_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26459_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26459_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26459_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26459_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26459_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26459_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_4@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26459_flds>
## Removing raster <r_lfp_26459_heads>
## Removing raster <r_lfp_26459_out>
## Removing vector <r_lfp_26459_heads>
## Removing vector <r_lfp_26459_lfp>
## Removing vector <r_lfp_26459_lfp2>
## Removing vector <r_lfp_26459_out>
## Removing vector <r_lfp_26459_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501432.672504991,2066203.78341704 output=LfpNetwork_lfp_tmp_cumayasa_stream_8
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_8@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501432.672504991,2066203.78341704...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26515_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26515_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26515_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26515_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26515_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26515_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26515_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26515_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26515_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26515_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26515_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26515_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26515_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26515_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_8@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26515_flds>
## Removing raster <r_lfp_26515_heads>
## Removing raster <r_lfp_26515_out>
## Removing vector <r_lfp_26515_heads>
## Removing vector <r_lfp_26515_lfp>
## Removing vector <r_lfp_26515_lfp2>
## Removing vector <r_lfp_26515_out>
## Removing vector <r_lfp_26515_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_8@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501432.672504991,2066203.78341704...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26515_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26515_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26515_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26515_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26515_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26515_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26515_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26515_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26515_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26515_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26515_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26515_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26515_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26515_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_8@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26515_flds>
## Removing raster <r_lfp_26515_heads>
## Removing raster <r_lfp_26515_out>
## Removing vector <r_lfp_26515_heads>
## Removing vector <r_lfp_26515_lfp>
## Removing vector <r_lfp_26515_lfp2>
## Removing vector <r_lfp_26515_out>
## Removing vector <r_lfp_26515_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500845.634863437,2065591.76545031 output=LfpNetwork_lfp_tmp_cumayasa_stream_14
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_14@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500845.634863437,2065591.76545031...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26573_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26573_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26573_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26573_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26573_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26573_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26573_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26573_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26573_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26573_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26573_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26573_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26573_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26573_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_14@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26573_flds>
## Removing raster <r_lfp_26573_heads>
## Removing raster <r_lfp_26573_out>
## Removing vector <r_lfp_26573_heads>
## Removing vector <r_lfp_26573_lfp>
## Removing vector <r_lfp_26573_lfp2>
## Removing vector <r_lfp_26573_out>
## Removing vector <r_lfp_26573_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_14@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500845.634863437,2065591.76545031...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26573_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26573_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26573_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26573_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26573_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26573_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26573_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26573_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26573_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26573_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26573_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26573_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26573_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26573_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_14@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26573_flds>
## Removing raster <r_lfp_26573_heads>
## Removing raster <r_lfp_26573_out>
## Removing vector <r_lfp_26573_heads>
## Removing vector <r_lfp_26573_lfp>
## Removing vector <r_lfp_26573_lfp2>
## Removing vector <r_lfp_26573_out>
## Removing vector <r_lfp_26573_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500196.146408953,2064967.257321 output=LfpNetwork_lfp_tmp_cumayasa_stream_26
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_26@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500196.146408953,2064967.257321...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26632_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26632_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26632_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26632_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26632_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26632_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26632_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26632_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26632_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26632_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26632_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26632_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26632_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26632_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_26@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26632_flds>
## Removing raster <r_lfp_26632_heads>
## Removing raster <r_lfp_26632_out>
## Removing vector <r_lfp_26632_heads>
## Removing vector <r_lfp_26632_lfp>
## Removing vector <r_lfp_26632_lfp2>
## Removing vector <r_lfp_26632_out>
## Removing vector <r_lfp_26632_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_26@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500196.146408953,2064967.257321...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26632_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26632_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26632_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26632_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26632_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26632_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26632_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26632_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26632_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26632_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26632_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26632_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26632_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26632_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_26@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26632_flds>
## Removing raster <r_lfp_26632_heads>
## Removing raster <r_lfp_26632_out>
## Removing vector <r_lfp_26632_heads>
## Removing vector <r_lfp_26632_lfp>
## Removing vector <r_lfp_26632_lfp2>
## Removing vector <r_lfp_26632_out>
## Removing vector <r_lfp_26632_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500483.420148436,2065304.49171083 output=LfpNetwork_lfp_tmp_cumayasa_stream_28
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_28@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500483.420148436,2065304.49171083...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26689_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26689_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26689_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26689_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26689_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26689_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26689_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26689_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26689_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26689_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26689_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26689_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26689_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26689_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_28@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26689_flds>
## Removing raster <r_lfp_26689_heads>
## Removing raster <r_lfp_26689_out>
## Removing vector <r_lfp_26689_heads>
## Removing vector <r_lfp_26689_lfp>
## Removing vector <r_lfp_26689_lfp2>
## Removing vector <r_lfp_26689_out>
## Removing vector <r_lfp_26689_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_28@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500483.420148436,2065304.49171083...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26689_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26689_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26689_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26689_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26689_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26689_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26689_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26689_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26689_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26689_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26689_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26689_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26689_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26689_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_28@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26689_flds>
## Removing raster <r_lfp_26689_heads>
## Removing raster <r_lfp_26689_out>
## Removing vector <r_lfp_26689_heads>
## Removing vector <r_lfp_26689_lfp>
## Removing vector <r_lfp_26689_lfp2>
## Removing vector <r_lfp_26689_out>
## Removing vector <r_lfp_26689_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499758.990718434,2064942.27699583 output=LfpNetwork_lfp_tmp_cumayasa_stream_33
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_33@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499758.990718434,2064942.27699583...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26749_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26749_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26749_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26749_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26749_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26749_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26749_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26749_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26749_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26749_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26749_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26749_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26749_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26749_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_33@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26749_flds>
## Removing raster <r_lfp_26749_heads>
## Removing raster <r_lfp_26749_out>
## Removing vector <r_lfp_26749_heads>
## Removing vector <r_lfp_26749_lfp>
## Removing vector <r_lfp_26749_lfp2>
## Removing vector <r_lfp_26749_out>
## Removing vector <r_lfp_26749_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_33@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499758.990718434,2064942.27699583...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26749_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26749_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26749_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26749_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26749_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26749_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26749_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26749_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26749_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26749_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26749_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26749_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26749_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26749_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_33@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26749_flds>
## Removing raster <r_lfp_26749_heads>
## Removing raster <r_lfp_26749_out>
## Removing vector <r_lfp_26749_heads>
## Removing vector <r_lfp_26749_lfp>
## Removing vector <r_lfp_26749_lfp2>
## Removing vector <r_lfp_26749_out>
## Removing vector <r_lfp_26749_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500383.498847746,2065154.60975979 output=LfpNetwork_lfp_tmp_cumayasa_stream_40
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_40@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500383.498847746,2065154.60975979...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26808_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26808_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26808_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26808_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26808_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26808_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26808_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26808_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26808_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26808_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26808_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26808_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26808_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26808_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_40@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26808_flds>
## Removing raster <r_lfp_26808_heads>
## Removing raster <r_lfp_26808_out>
## Removing vector <r_lfp_26808_heads>
## Removing vector <r_lfp_26808_lfp>
## Removing vector <r_lfp_26808_lfp2>
## Removing vector <r_lfp_26808_out>
## Removing vector <r_lfp_26808_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_40@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500383.498847746,2065154.60975979...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26808_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26808_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26808_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26808_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26808_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26808_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26808_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26808_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26808_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26808_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26808_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26808_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26808_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26808_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_40@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26808_flds>
## Removing raster <r_lfp_26808_heads>
## Removing raster <r_lfp_26808_out>
## Removing vector <r_lfp_26808_heads>
## Removing vector <r_lfp_26808_lfp>
## Removing vector <r_lfp_26808_lfp2>
## Removing vector <r_lfp_26808_out>
## Removing vector <r_lfp_26808_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499509.187466709,2064792.39504479 output=LfpNetwork_lfp_tmp_cumayasa_stream_54
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_54@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499509.187466709,2064792.39504479...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26868_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26868_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26868_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26868_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26868_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26868_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26868_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26868_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26868_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26868_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26868_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26868_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26868_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26868_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_54@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26868_flds>
## Removing raster <r_lfp_26868_heads>
## Removing raster <r_lfp_26868_out>
## Removing vector <r_lfp_26868_heads>
## Removing vector <r_lfp_26868_lfp>
## Removing vector <r_lfp_26868_lfp2>
## Removing vector <r_lfp_26868_out>
## Removing vector <r_lfp_26868_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_54@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499509.187466709,2064792.39504479...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26868_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26868_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26868_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26868_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26868_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26868_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26868_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26868_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26868_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26868_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26868_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26868_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26868_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26868_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_54@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26868_flds>
## Removing raster <r_lfp_26868_heads>
## Removing raster <r_lfp_26868_out>
## Removing vector <r_lfp_26868_heads>
## Removing vector <r_lfp_26868_lfp>
## Removing vector <r_lfp_26868_lfp2>
## Removing vector <r_lfp_26868_out>
## Removing vector <r_lfp_26868_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499246.894052398,2064442.67049238 output=LfpNetwork_lfp_tmp_cumayasa_stream_60
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_60@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499246.894052398,2064442.67049238...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26926_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26926_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26926_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26926_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26926_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26926_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26926_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26926_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26926_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26926_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26926_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26926_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26926_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26926_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_60@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26926_flds>
## Removing raster <r_lfp_26926_heads>
## Removing raster <r_lfp_26926_out>
## Removing vector <r_lfp_26926_heads>
## Removing vector <r_lfp_26926_lfp>
## Removing vector <r_lfp_26926_lfp2>
## Removing vector <r_lfp_26926_out>
## Removing vector <r_lfp_26926_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_60@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499246.894052398,2064442.67049238...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26926_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26926_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26926_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26926_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26926_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26926_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26926_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26926_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26926_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26926_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26926_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26926_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26926_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26926_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_60@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26926_flds>
## Removing raster <r_lfp_26926_heads>
## Removing raster <r_lfp_26926_out>
## Removing vector <r_lfp_26926_heads>
## Removing vector <r_lfp_26926_lfp>
## Removing vector <r_lfp_26926_lfp2>
## Removing vector <r_lfp_26926_out>
## Removing vector <r_lfp_26926_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499084.521938777,2063393.49683513 output=LfpNetwork_lfp_tmp_cumayasa_stream_63
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_63@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499084.521938777,2063393.49683513...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26988_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26988_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26988_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26988_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26988_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26988_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26988_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26988_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26988_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26988_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26988_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26988_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26988_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26988_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_63@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26988_flds>
## Removing raster <r_lfp_26988_heads>
## Removing raster <r_lfp_26988_out>
## Removing vector <r_lfp_26988_heads>
## Removing vector <r_lfp_26988_lfp>
## Removing vector <r_lfp_26988_lfp2>
## Removing vector <r_lfp_26988_out>
## Removing vector <r_lfp_26988_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_63@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499084.521938777,2063393.49683513...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_26988_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_26988_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_26988_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26988_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_26988_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_26988_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_26988_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26988_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_26988_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_26988_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26988_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_26988_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_26988_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_26988_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_63@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_26988_flds>
## Removing raster <r_lfp_26988_heads>
## Removing raster <r_lfp_26988_out>
## Removing vector <r_lfp_26988_heads>
## Removing vector <r_lfp_26988_lfp>
## Removing vector <r_lfp_26988_lfp2>
## Removing vector <r_lfp_26988_out>
## Removing vector <r_lfp_26988_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499484.207141537,2064667.49341893 output=LfpNetwork_lfp_tmp_cumayasa_stream_68
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_68@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499484.207141537,2064667.49341893...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27044_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27044_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27044_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27044_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27044_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27044_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27044_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27044_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27044_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27044_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27044_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27044_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27044_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27044_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_68@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27044_flds>
## Removing raster <r_lfp_27044_heads>
## Removing raster <r_lfp_27044_out>
## Removing vector <r_lfp_27044_heads>
## Removing vector <r_lfp_27044_lfp>
## Removing vector <r_lfp_27044_lfp2>
## Removing vector <r_lfp_27044_out>
## Removing vector <r_lfp_27044_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_68@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499484.207141537,2064667.49341893...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27044_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27044_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27044_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27044_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27044_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27044_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27044_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27044_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27044_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27044_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27044_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27044_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27044_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27044_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_68@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27044_flds>
## Removing raster <r_lfp_27044_heads>
## Removing raster <r_lfp_27044_out>
## Removing vector <r_lfp_27044_heads>
## Removing vector <r_lfp_27044_lfp>
## Removing vector <r_lfp_27044_lfp2>
## Removing vector <r_lfp_27044_out>
## Removing vector <r_lfp_27044_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499146.972751708,2064342.74919169 output=LfpNetwork_lfp_tmp_cumayasa_stream_81
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_81@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499146.972751708,2064342.74919169...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27102_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27102_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27102_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27102_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27102_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27102_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27102_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27102_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27102_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27102_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27102_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27102_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27102_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27102_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_81@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27102_flds>
## Removing raster <r_lfp_27102_heads>
## Removing raster <r_lfp_27102_out>
## Removing vector <r_lfp_27102_heads>
## Removing vector <r_lfp_27102_lfp>
## Removing vector <r_lfp_27102_lfp2>
## Removing vector <r_lfp_27102_out>
## Removing vector <r_lfp_27102_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_81@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499146.972751708,2064342.74919169...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27102_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27102_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27102_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27102_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27102_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27102_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27102_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27102_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27102_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27102_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27102_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27102_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27102_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27102_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_81@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27102_flds>
## Removing raster <r_lfp_27102_heads>
## Removing raster <r_lfp_27102_out>
## Removing vector <r_lfp_27102_heads>
## Removing vector <r_lfp_27102_lfp>
## Removing vector <r_lfp_27102_lfp2>
## Removing vector <r_lfp_27102_out>
## Removing vector <r_lfp_27102_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498959.620312914,2064142.90659031 output=LfpNetwork_lfp_tmp_cumayasa_stream_85
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_85@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498959.620312914,2064142.90659031...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27166_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27166_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27166_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27166_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27166_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27166_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27166_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27166_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27166_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27166_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27166_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27166_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27166_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27166_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_85@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27166_flds>
## Removing raster <r_lfp_27166_heads>
## Removing raster <r_lfp_27166_out>
## Removing vector <r_lfp_27166_heads>
## Removing vector <r_lfp_27166_lfp>
## Removing vector <r_lfp_27166_lfp2>
## Removing vector <r_lfp_27166_out>
## Removing vector <r_lfp_27166_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_85@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498959.620312914,2064142.90659031...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27166_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27166_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27166_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27166_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27166_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27166_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27166_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27166_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27166_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27166_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27166_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27166_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27166_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27166_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_85@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27166_flds>
## Removing raster <r_lfp_27166_heads>
## Removing raster <r_lfp_27166_out>
## Removing vector <r_lfp_27166_heads>
## Removing vector <r_lfp_27166_lfp>
## Removing vector <r_lfp_27166_lfp2>
## Removing vector <r_lfp_27166_out>
## Removing vector <r_lfp_27166_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498947.130150328,2063568.35911134 output=LfpNetwork_lfp_tmp_cumayasa_stream_86
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_86@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498947.130150328,2063568.35911134...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27223_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27223_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27223_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27223_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27223_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27223_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27223_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27223_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27223_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27223_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27223_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27223_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27223_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27223_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_86@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27223_flds>
## Removing raster <r_lfp_27223_heads>
## Removing raster <r_lfp_27223_out>
## Removing vector <r_lfp_27223_heads>
## Removing vector <r_lfp_27223_lfp>
## Removing vector <r_lfp_27223_lfp2>
## Removing vector <r_lfp_27223_out>
## Removing vector <r_lfp_27223_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_86@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498947.130150328,2063568.35911134...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27223_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27223_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27223_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27223_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27223_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27223_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27223_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27223_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27223_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27223_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27223_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27223_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27223_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27223_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_86@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27223_flds>
## Removing raster <r_lfp_27223_heads>
## Removing raster <r_lfp_27223_out>
## Removing vector <r_lfp_27223_heads>
## Removing vector <r_lfp_27223_lfp>
## Removing vector <r_lfp_27223_lfp2>
## Removing vector <r_lfp_27223_out>
## Removing vector <r_lfp_27223_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499883.892344296,2062294.36252754 output=LfpNetwork_lfp_tmp_cumayasa_stream_111
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_111@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499883.892344296,2062294.36252754...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27283_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27283_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27283_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27283_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27283_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27283_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27283_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27283_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27283_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27283_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27283_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27283_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27283_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27283_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_111@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27283_flds>
## Removing raster <r_lfp_27283_heads>
## Removing raster <r_lfp_27283_out>
## Removing vector <r_lfp_27283_heads>
## Removing vector <r_lfp_27283_lfp>
## Removing vector <r_lfp_27283_lfp2>
## Removing vector <r_lfp_27283_out>
## Removing vector <r_lfp_27283_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_111@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499883.892344296,2062294.36252754...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27283_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27283_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27283_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27283_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27283_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27283_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27283_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27283_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27283_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27283_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27283_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27283_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27283_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27283_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_111@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27283_flds>
## Removing raster <r_lfp_27283_heads>
## Removing raster <r_lfp_27283_out>
## Removing vector <r_lfp_27283_heads>
## Removing vector <r_lfp_27283_lfp>
## Removing vector <r_lfp_27283_lfp2>
## Removing vector <r_lfp_27283_out>
## Removing vector <r_lfp_27283_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499334.325190502,2062806.45919358 output=LfpNetwork_lfp_tmp_cumayasa_stream_123
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_123@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499334.325190502,2062806.45919358...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27337_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27337_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27337_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27337_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27337_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27337_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27337_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27337_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27337_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27337_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27337_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27337_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27337_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27337_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_123@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27337_flds>
## Removing raster <r_lfp_27337_heads>
## Removing raster <r_lfp_27337_out>
## Removing vector <r_lfp_27337_heads>
## Removing vector <r_lfp_27337_lfp>
## Removing vector <r_lfp_27337_lfp2>
## Removing vector <r_lfp_27337_out>
## Removing vector <r_lfp_27337_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_123@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499334.325190502,2062806.45919358...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27337_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27337_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27337_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27337_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27337_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27337_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27337_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27337_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27337_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27337_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27337_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27337_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27337_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27337_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_123@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27337_flds>
## Removing raster <r_lfp_27337_heads>
## Removing raster <r_lfp_27337_out>
## Removing vector <r_lfp_27337_heads>
## Removing vector <r_lfp_27337_lfp>
## Removing vector <r_lfp_27337_lfp2>
## Removing vector <r_lfp_27337_out>
## Removing vector <r_lfp_27337_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499059.541613604,2063368.51650996 output=LfpNetwork_lfp_tmp_cumayasa_stream_129
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_129@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499059.541613604,2063368.51650996...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27391_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27391_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27391_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27391_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27391_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27391_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27391_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27391_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27391_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27391_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27391_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27391_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27391_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27391_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_129@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27391_flds>
## Removing raster <r_lfp_27391_heads>
## Removing raster <r_lfp_27391_out>
## Removing vector <r_lfp_27391_heads>
## Removing vector <r_lfp_27391_lfp>
## Removing vector <r_lfp_27391_lfp2>
## Removing vector <r_lfp_27391_out>
## Removing vector <r_lfp_27391_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_129@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499059.541613604,2063368.51650996...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27391_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27391_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27391_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27391_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27391_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27391_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27391_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27391_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27391_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27391_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27391_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27391_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27391_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27391_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_129@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27391_flds>
## Removing raster <r_lfp_27391_heads>
## Removing raster <r_lfp_27391_out>
## Removing vector <r_lfp_27391_heads>
## Removing vector <r_lfp_27391_lfp>
## Removing vector <r_lfp_27391_lfp2>
## Removing vector <r_lfp_27391_out>
## Removing vector <r_lfp_27391_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499871.40218171,2062219.42155202 output=LfpNetwork_lfp_tmp_cumayasa_stream_142
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_142@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499871.40218171,2062219.42155202...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27449_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27449_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27449_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27449_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27449_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27449_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27449_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27449_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27449_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27449_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27449_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27449_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27449_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27449_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_142@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27449_flds>
## Removing raster <r_lfp_27449_heads>
## Removing raster <r_lfp_27449_out>
## Removing vector <r_lfp_27449_heads>
## Removing vector <r_lfp_27449_lfp>
## Removing vector <r_lfp_27449_lfp2>
## Removing vector <r_lfp_27449_out>
## Removing vector <r_lfp_27449_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_142@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499871.40218171,2062219.42155202...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27449_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27449_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27449_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27449_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27449_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27449_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27449_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27449_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27449_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27449_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27449_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27449_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27449_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27449_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_142@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27449_flds>
## Removing raster <r_lfp_27449_heads>
## Removing raster <r_lfp_27449_out>
## Removing vector <r_lfp_27449_heads>
## Removing vector <r_lfp_27449_lfp>
## Removing vector <r_lfp_27449_lfp2>
## Removing vector <r_lfp_27449_out>
## Removing vector <r_lfp_27449_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499871.40218171,2062231.91171461 output=LfpNetwork_lfp_tmp_cumayasa_stream_161
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_161@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499871.40218171,2062231.91171461...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27505_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27505_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27505_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27505_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27505_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27505_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27505_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27505_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27505_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27505_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27505_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27505_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27505_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27505_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_161@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27505_flds>
## Removing raster <r_lfp_27505_heads>
## Removing raster <r_lfp_27505_out>
## Removing vector <r_lfp_27505_heads>
## Removing vector <r_lfp_27505_lfp>
## Removing vector <r_lfp_27505_lfp2>
## Removing vector <r_lfp_27505_out>
## Removing vector <r_lfp_27505_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_161@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499871.40218171,2062231.91171461...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27505_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27505_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27505_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27505_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27505_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27505_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27505_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27505_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27505_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27505_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27505_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27505_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27505_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27505_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_161@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27505_flds>
## Removing raster <r_lfp_27505_heads>
## Removing raster <r_lfp_27505_out>
## Removing vector <r_lfp_27505_heads>
## Removing vector <r_lfp_27505_lfp>
## Removing vector <r_lfp_27505_lfp2>
## Removing vector <r_lfp_27505_out>
## Removing vector <r_lfp_27505_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499696.539905503,2062444.24447858 output=LfpNetwork_lfp_tmp_cumayasa_stream_168
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499696.539905503,2062444.24447858...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27559_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27559_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27559_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27559_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27559_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27559_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27559_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_27559_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_27559_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27559_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27559_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_27559_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27559_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_27559_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27559_flds>
## Removing raster <r_lfp_27559_heads>
## Removing raster <r_lfp_27559_out>
## Removing vector <r_lfp_27559_heads>
## Removing vector <r_lfp_27559_lfp>
## Removing vector <r_lfp_27559_lfp2>
## Removing vector <r_lfp_27559_out>
## Removing vector <r_lfp_27559_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499696.539905503,2062444.24447858...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27559_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27559_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27559_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27559_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27559_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27559_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27559_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_27559_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_27559_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27559_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27559_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_27559_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27559_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_27559_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27559_flds>
## Removing raster <r_lfp_27559_heads>
## Removing raster <r_lfp_27559_out>
## Removing vector <r_lfp_27559_heads>
## Removing vector <r_lfp_27559_lfp>
## Removing vector <r_lfp_27559_lfp2>
## Removing vector <r_lfp_27559_out>
## Removing vector <r_lfp_27559_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_168 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_168> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_168> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_168 output=LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_168>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500283.577547056,2062032.06911323 output=LfpNetwork_lfp_tmp_cumayasa_stream_187
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_187@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500283.577547056,2062032.06911323...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27633_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27633_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27633_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27633_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27633_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27633_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27633_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27633_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27633_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27633_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27633_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27633_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27633_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27633_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_187@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27633_flds>
## Removing raster <r_lfp_27633_heads>
## Removing raster <r_lfp_27633_out>
## Removing vector <r_lfp_27633_heads>
## Removing vector <r_lfp_27633_lfp>
## Removing vector <r_lfp_27633_lfp2>
## Removing vector <r_lfp_27633_out>
## Removing vector <r_lfp_27633_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_187@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500283.577547056,2062032.06911323...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27633_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27633_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27633_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27633_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27633_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27633_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27633_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27633_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27633_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27633_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27633_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27633_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27633_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27633_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_187@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27633_flds>
## Removing raster <r_lfp_27633_heads>
## Removing raster <r_lfp_27633_out>
## Removing vector <r_lfp_27633_heads>
## Removing vector <r_lfp_27633_lfp>
## Removing vector <r_lfp_27633_lfp2>
## Removing vector <r_lfp_27633_out>
## Removing vector <r_lfp_27633_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500246.107059298,2062169.46090168 output=LfpNetwork_lfp_tmp_cumayasa_stream_227
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_227@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500246.107059298,2062169.46090168...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27685_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27685_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27685_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27685_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27685_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27685_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27685_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27685_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27685_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27685_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27685_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27685_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27685_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27685_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_227@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27685_flds>
## Removing raster <r_lfp_27685_heads>
## Removing raster <r_lfp_27685_out>
## Removing vector <r_lfp_27685_heads>
## Removing vector <r_lfp_27685_lfp>
## Removing vector <r_lfp_27685_lfp2>
## Removing vector <r_lfp_27685_out>
## Removing vector <r_lfp_27685_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_227@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500246.107059298,2062169.46090168...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27685_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27685_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27685_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27685_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27685_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27685_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27685_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27685_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27685_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27685_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27685_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27685_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27685_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27685_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_227@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27685_flds>
## Removing raster <r_lfp_27685_heads>
## Removing raster <r_lfp_27685_out>
## Removing vector <r_lfp_27685_heads>
## Removing vector <r_lfp_27685_lfp>
## Removing vector <r_lfp_27685_lfp2>
## Removing vector <r_lfp_27685_out>
## Removing vector <r_lfp_27685_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500271.08738447,2062032.06911323 output=LfpNetwork_lfp_tmp_cumayasa_stream_233
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_233@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500271.08738447,2062032.06911323...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27743_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27743_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27743_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27743_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27743_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27743_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27743_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27743_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27743_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27743_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27743_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27743_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27743_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27743_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_233@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27743_flds>
## Removing raster <r_lfp_27743_heads>
## Removing raster <r_lfp_27743_out>
## Removing vector <r_lfp_27743_heads>
## Removing vector <r_lfp_27743_lfp>
## Removing vector <r_lfp_27743_lfp2>
## Removing vector <r_lfp_27743_out>
## Removing vector <r_lfp_27743_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_233@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500271.08738447,2062032.06911323...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27743_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27743_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27743_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27743_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27743_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27743_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27743_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27743_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27743_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27743_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27743_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27743_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27743_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27743_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_233@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27743_flds>
## Removing raster <r_lfp_27743_heads>
## Removing raster <r_lfp_27743_out>
## Removing vector <r_lfp_27743_heads>
## Removing vector <r_lfp_27743_lfp>
## Removing vector <r_lfp_27743_lfp2>
## Removing vector <r_lfp_27743_out>
## Removing vector <r_lfp_27743_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500470.92998585,2061932.14781254 output=LfpNetwork_lfp_tmp_cumayasa_stream_262
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_262@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500470.92998585,2061932.14781254...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27804_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27804_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27804_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27804_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27804_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27804_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27804_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27804_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27804_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27804_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27804_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27804_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27804_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27804_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_262@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27804_flds>
## Removing raster <r_lfp_27804_heads>
## Removing raster <r_lfp_27804_out>
## Removing vector <r_lfp_27804_heads>
## Removing vector <r_lfp_27804_lfp>
## Removing vector <r_lfp_27804_lfp2>
## Removing vector <r_lfp_27804_out>
## Removing vector <r_lfp_27804_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_262@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500470.92998585,2061932.14781254...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27804_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27804_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27804_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27804_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27804_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27804_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27804_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27804_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27804_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27804_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27804_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27804_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27804_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27804_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_262@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27804_flds>
## Removing raster <r_lfp_27804_heads>
## Removing raster <r_lfp_27804_out>
## Removing vector <r_lfp_27804_heads>
## Removing vector <r_lfp_27804_lfp>
## Removing vector <r_lfp_27804_lfp2>
## Removing vector <r_lfp_27804_out>
## Removing vector <r_lfp_27804_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501245.320066197,2061557.44293495 output=LfpNetwork_lfp_tmp_cumayasa_stream_274
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_274@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501245.320066197,2061557.44293495...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27862_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27862_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27862_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27862_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27862_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27862_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27862_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27862_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27862_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27862_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27862_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27862_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27862_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27862_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_274@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27862_flds>
## Removing raster <r_lfp_27862_heads>
## Removing raster <r_lfp_27862_out>
## Removing vector <r_lfp_27862_heads>
## Removing vector <r_lfp_27862_lfp>
## Removing vector <r_lfp_27862_lfp2>
## Removing vector <r_lfp_27862_out>
## Removing vector <r_lfp_27862_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_274@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501245.320066197,2061557.44293495...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27862_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27862_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27862_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27862_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27862_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27862_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27862_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27862_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27862_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27862_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27862_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27862_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27862_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27862_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_274@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27862_flds>
## Removing raster <r_lfp_27862_heads>
## Removing raster <r_lfp_27862_out>
## Removing vector <r_lfp_27862_heads>
## Removing vector <r_lfp_27862_lfp>
## Removing vector <r_lfp_27862_lfp2>
## Removing vector <r_lfp_27862_out>
## Removing vector <r_lfp_27862_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500808.164375679,2061819.73634926 output=LfpNetwork_lfp_tmp_cumayasa_stream_328
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_328@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500808.164375679,2061819.73634926...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27926_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27926_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27926_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27926_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27926_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27926_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27926_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27926_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27926_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27926_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27926_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27926_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27926_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27926_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_328@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27926_flds>
## Removing raster <r_lfp_27926_heads>
## Removing raster <r_lfp_27926_out>
## Removing vector <r_lfp_27926_heads>
## Removing vector <r_lfp_27926_lfp>
## Removing vector <r_lfp_27926_lfp2>
## Removing vector <r_lfp_27926_out>
## Removing vector <r_lfp_27926_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_328@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500808.164375679,2061819.73634926...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27926_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27926_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27926_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27926_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27926_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27926_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27926_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27926_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27926_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27926_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27926_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27926_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27926_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27926_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_328@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27926_flds>
## Removing raster <r_lfp_27926_heads>
## Removing raster <r_lfp_27926_out>
## Removing vector <r_lfp_27926_heads>
## Removing vector <r_lfp_27926_lfp>
## Removing vector <r_lfp_27926_lfp2>
## Removing vector <r_lfp_27926_out>
## Removing vector <r_lfp_27926_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501382.711854646,2061382.58065875 output=LfpNetwork_lfp_tmp_cumayasa_stream_355
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_355@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501382.711854646,2061382.58065875...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27989_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27989_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27989_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27989_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27989_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27989_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27989_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27989_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27989_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27989_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27989_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27989_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27989_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27989_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_355@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27989_flds>
## Removing raster <r_lfp_27989_heads>
## Removing raster <r_lfp_27989_out>
## Removing vector <r_lfp_27989_heads>
## Removing vector <r_lfp_27989_lfp>
## Removing vector <r_lfp_27989_lfp2>
## Removing vector <r_lfp_27989_out>
## Removing vector <r_lfp_27989_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_355@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501382.711854646,2061382.58065875...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_27989_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_27989_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_27989_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27989_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_27989_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_27989_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_27989_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27989_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_27989_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_27989_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27989_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_27989_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_27989_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_27989_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_355@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_27989_flds>
## Removing raster <r_lfp_27989_heads>
## Removing raster <r_lfp_27989_out>
## Removing vector <r_lfp_27989_heads>
## Removing vector <r_lfp_27989_lfp>
## Removing vector <r_lfp_27989_lfp2>
## Removing vector <r_lfp_27989_out>
## Removing vector <r_lfp_27989_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501407.692179819,2061395.07082133 output=LfpNetwork_lfp_tmp_cumayasa_stream_406
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501407.692179819,2061395.07082133...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28041_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28041_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28041_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28041_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28041_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28041_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28041_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_28041_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_28041_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28041_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28041_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_28041_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28041_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_28041_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28041_flds>
## Removing raster <r_lfp_28041_heads>
## Removing raster <r_lfp_28041_out>
## Removing vector <r_lfp_28041_heads>
## Removing vector <r_lfp_28041_lfp>
## Removing vector <r_lfp_28041_lfp2>
## Removing vector <r_lfp_28041_out>
## Removing vector <r_lfp_28041_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501407.692179819,2061395.07082133...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28041_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28041_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28041_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28041_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28041_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28041_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28041_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_28041_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_28041_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28041_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28041_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_28041_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28041_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_28041_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28041_flds>
## Removing raster <r_lfp_28041_heads>
## Removing raster <r_lfp_28041_out>
## Removing vector <r_lfp_28041_heads>
## Removing vector <r_lfp_28041_lfp>
## Removing vector <r_lfp_28041_lfp2>
## Removing vector <r_lfp_28041_out>
## Removing vector <r_lfp_28041_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_406 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_406> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_406> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_406 output=LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_406>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501732.436407061,2061007.87578116 output=LfpNetwork_lfp_tmp_cumayasa_stream_458
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501732.436407061,2061007.87578116...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28113_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28113_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28113_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28113_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28113_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28113_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28113_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_28113_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_28113_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28113_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28113_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_28113_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28113_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_28113_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28113_flds>
## Removing raster <r_lfp_28113_heads>
## Removing raster <r_lfp_28113_out>
## Removing vector <r_lfp_28113_heads>
## Removing vector <r_lfp_28113_lfp>
## Removing vector <r_lfp_28113_lfp2>
## Removing vector <r_lfp_28113_out>
## Removing vector <r_lfp_28113_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501732.436407061,2061007.87578116...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28113_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28113_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28113_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28113_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28113_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28113_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28113_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_28113_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_28113_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28113_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28113_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_28113_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28113_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_28113_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28113_flds>
## Removing raster <r_lfp_28113_heads>
## Removing raster <r_lfp_28113_out>
## Removing vector <r_lfp_28113_heads>
## Removing vector <r_lfp_28113_lfp>
## Removing vector <r_lfp_28113_lfp2>
## Removing vector <r_lfp_28113_out>
## Removing vector <r_lfp_28113_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_458 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_458> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_458> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_458 output=LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_458>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501657.495431544,2061082.81675668 output=LfpNetwork_lfp_tmp_cumayasa_stream_484
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_484@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501657.495431544,2061082.81675668...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28182_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28182_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28182_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28182_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28182_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28182_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28182_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28182_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28182_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28182_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28182_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28182_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28182_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28182_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_484@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28182_flds>
## Removing raster <r_lfp_28182_heads>
## Removing raster <r_lfp_28182_out>
## Removing vector <r_lfp_28182_heads>
## Removing vector <r_lfp_28182_lfp>
## Removing vector <r_lfp_28182_lfp2>
## Removing vector <r_lfp_28182_out>
## Removing vector <r_lfp_28182_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_484@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501657.495431544,2061082.81675668...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28182_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28182_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28182_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28182_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28182_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28182_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28182_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28182_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28182_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28182_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28182_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28182_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28182_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28182_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_484@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28182_flds>
## Removing raster <r_lfp_28182_heads>
## Removing raster <r_lfp_28182_out>
## Removing vector <r_lfp_28182_heads>
## Removing vector <r_lfp_28182_lfp>
## Removing vector <r_lfp_28182_lfp2>
## Removing vector <r_lfp_28182_out>
## Removing vector <r_lfp_28182_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501632.515106371,2059621.46773408 output=LfpNetwork_lfp_tmp_cumayasa_stream_657
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_657@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501632.515106371,2059621.46773408...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28240_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28240_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28240_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28240_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28240_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28240_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28240_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28240_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28240_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28240_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28240_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28240_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28240_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28240_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_657@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28240_flds>
## Removing raster <r_lfp_28240_heads>
## Removing raster <r_lfp_28240_out>
## Removing vector <r_lfp_28240_heads>
## Removing vector <r_lfp_28240_lfp>
## Removing vector <r_lfp_28240_lfp2>
## Removing vector <r_lfp_28240_out>
## Removing vector <r_lfp_28240_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_657@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501632.515106371,2059621.46773408...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28240_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28240_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28240_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28240_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28240_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28240_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28240_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28240_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28240_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28240_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28240_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28240_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28240_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28240_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_657@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28240_flds>
## Removing raster <r_lfp_28240_heads>
## Removing raster <r_lfp_28240_out>
## Removing vector <r_lfp_28240_heads>
## Removing vector <r_lfp_28240_lfp>
## Removing vector <r_lfp_28240_lfp2>
## Removing vector <r_lfp_28240_out>
## Removing vector <r_lfp_28240_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501657.495431544,2059658.93822184 output=LfpNetwork_lfp_tmp_cumayasa_stream_675
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_675@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501657.495431544,2059658.93822184...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28298_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28298_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28298_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28298_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28298_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28298_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28298_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28298_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28298_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28298_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28298_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28298_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28298_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28298_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_675@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28298_flds>
## Removing raster <r_lfp_28298_heads>
## Removing raster <r_lfp_28298_out>
## Removing vector <r_lfp_28298_heads>
## Removing vector <r_lfp_28298_lfp>
## Removing vector <r_lfp_28298_lfp2>
## Removing vector <r_lfp_28298_out>
## Removing vector <r_lfp_28298_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_675@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501657.495431544,2059658.93822184...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28298_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28298_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28298_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28298_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28298_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28298_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28298_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28298_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28298_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28298_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28298_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28298_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28298_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28298_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_675@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28298_flds>
## Removing raster <r_lfp_28298_heads>
## Removing raster <r_lfp_28298_out>
## Removing vector <r_lfp_28298_heads>
## Removing vector <r_lfp_28298_lfp>
## Removing vector <r_lfp_28298_lfp2>
## Removing vector <r_lfp_28298_out>
## Removing vector <r_lfp_28298_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500246.107059298,2057060.9844039 output=LfpNetwork_lfp_tmp_cumayasa_stream_684
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_684@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500246.107059298,2057060.9844039...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28355_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28355_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28355_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28355_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28355_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28355_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28355_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28355_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28355_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28355_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28355_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28355_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28355_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28355_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_684@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28355_flds>
## Removing raster <r_lfp_28355_heads>
## Removing raster <r_lfp_28355_out>
## Removing vector <r_lfp_28355_heads>
## Removing vector <r_lfp_28355_lfp>
## Removing vector <r_lfp_28355_lfp2>
## Removing vector <r_lfp_28355_out>
## Removing vector <r_lfp_28355_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_684@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500246.107059298,2057060.9844039...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28355_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28355_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28355_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28355_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28355_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28355_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28355_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28355_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28355_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28355_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28355_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28355_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28355_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28355_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_684@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28355_flds>
## Removing raster <r_lfp_28355_heads>
## Removing raster <r_lfp_28355_out>
## Removing vector <r_lfp_28355_heads>
## Removing vector <r_lfp_28355_lfp>
## Removing vector <r_lfp_28355_lfp2>
## Removing vector <r_lfp_28355_out>
## Removing vector <r_lfp_28355_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501407.692179819,2059059.4104177 output=LfpNetwork_lfp_tmp_cumayasa_stream_707
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_707@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501407.692179819,2059059.4104177...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28410_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28410_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28410_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28410_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28410_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28410_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28410_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28410_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28410_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28410_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28410_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28410_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28410_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28410_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_707@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28410_flds>
## Removing raster <r_lfp_28410_heads>
## Removing raster <r_lfp_28410_out>
## Removing vector <r_lfp_28410_heads>
## Removing vector <r_lfp_28410_lfp>
## Removing vector <r_lfp_28410_lfp2>
## Removing vector <r_lfp_28410_out>
## Removing vector <r_lfp_28410_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_707@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501407.692179819,2059059.4104177...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28410_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28410_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28410_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28410_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28410_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28410_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28410_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28410_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28410_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28410_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28410_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28410_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28410_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28410_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_707@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28410_flds>
## Removing raster <r_lfp_28410_heads>
## Removing raster <r_lfp_28410_out>
## Removing vector <r_lfp_28410_heads>
## Removing vector <r_lfp_28410_lfp>
## Removing vector <r_lfp_28410_lfp2>
## Removing vector <r_lfp_28410_out>
## Removing vector <r_lfp_28410_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501545.083968267,2059271.74318167 output=LfpNetwork_lfp_tmp_cumayasa_stream_711
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_711@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501545.083968267,2059271.74318167...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28468_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28468_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28468_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28468_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28468_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28468_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28468_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28468_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28468_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28468_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28468_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28468_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28468_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28468_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_711@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28468_flds>
## Removing raster <r_lfp_28468_heads>
## Removing raster <r_lfp_28468_out>
## Removing vector <r_lfp_28468_heads>
## Removing vector <r_lfp_28468_lfp>
## Removing vector <r_lfp_28468_lfp2>
## Removing vector <r_lfp_28468_out>
## Removing vector <r_lfp_28468_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_711@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501545.083968267,2059271.74318167...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28468_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28468_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28468_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28468_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28468_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28468_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28468_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28468_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28468_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28468_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28468_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28468_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28468_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28468_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_711@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28468_flds>
## Removing raster <r_lfp_28468_heads>
## Removing raster <r_lfp_28468_out>
## Removing vector <r_lfp_28468_heads>
## Removing vector <r_lfp_28468_lfp>
## Removing vector <r_lfp_28468_lfp2>
## Removing vector <r_lfp_28468_out>
## Removing vector <r_lfp_28468_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501595.044618612,2059496.56610822 output=LfpNetwork_lfp_tmp_cumayasa_stream_724
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_724@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501595.044618612,2059496.56610822...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28527_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28527_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28527_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28527_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28527_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28527_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28527_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28527_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28527_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28527_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28527_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28527_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28527_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28527_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_724@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28527_flds>
## Removing raster <r_lfp_28527_heads>
## Removing raster <r_lfp_28527_out>
## Removing vector <r_lfp_28527_heads>
## Removing vector <r_lfp_28527_lfp>
## Removing vector <r_lfp_28527_lfp2>
## Removing vector <r_lfp_28527_out>
## Removing vector <r_lfp_28527_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_724@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501595.044618612,2059496.56610822...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28527_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28527_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28527_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28527_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28527_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28527_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28527_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28527_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28527_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28527_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28527_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28527_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28527_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28527_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_724@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28527_flds>
## Removing raster <r_lfp_28527_heads>
## Removing raster <r_lfp_28527_out>
## Removing vector <r_lfp_28527_heads>
## Removing vector <r_lfp_28527_lfp>
## Removing vector <r_lfp_28527_lfp2>
## Removing vector <r_lfp_28527_out>
## Removing vector <r_lfp_28527_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501545.083968267,2059396.64480753 output=LfpNetwork_lfp_tmp_cumayasa_stream_732
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_732@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501545.083968267,2059396.64480753...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28581_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28581_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28581_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28581_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28581_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28581_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28581_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28581_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28581_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28581_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28581_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28581_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28581_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28581_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_732@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28581_flds>
## Removing raster <r_lfp_28581_heads>
## Removing raster <r_lfp_28581_out>
## Removing vector <r_lfp_28581_heads>
## Removing vector <r_lfp_28581_lfp>
## Removing vector <r_lfp_28581_lfp2>
## Removing vector <r_lfp_28581_out>
## Removing vector <r_lfp_28581_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_732@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501545.083968267,2059396.64480753...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28581_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28581_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28581_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28581_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28581_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28581_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28581_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28581_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28581_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28581_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28581_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28581_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28581_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28581_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_732@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28581_flds>
## Removing raster <r_lfp_28581_heads>
## Removing raster <r_lfp_28581_out>
## Removing vector <r_lfp_28581_heads>
## Removing vector <r_lfp_28581_lfp>
## Removing vector <r_lfp_28581_lfp2>
## Removing vector <r_lfp_28581_out>
## Removing vector <r_lfp_28581_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501607.534781199,2059658.93822184 output=LfpNetwork_lfp_tmp_cumayasa_stream_744
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_744@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501607.534781199,2059658.93822184...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28640_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28640_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28640_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28640_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28640_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28640_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28640_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28640_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28640_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28640_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28640_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28640_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28640_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28640_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_744@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28640_flds>
## Removing raster <r_lfp_28640_heads>
## Removing raster <r_lfp_28640_out>
## Removing vector <r_lfp_28640_heads>
## Removing vector <r_lfp_28640_lfp>
## Removing vector <r_lfp_28640_lfp2>
## Removing vector <r_lfp_28640_out>
## Removing vector <r_lfp_28640_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_744@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501607.534781199,2059658.93822184...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28640_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28640_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28640_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28640_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28640_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28640_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28640_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28640_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28640_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28640_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28640_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28640_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28640_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28640_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_744@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28640_flds>
## Removing raster <r_lfp_28640_heads>
## Removing raster <r_lfp_28640_out>
## Removing vector <r_lfp_28640_heads>
## Removing vector <r_lfp_28640_lfp>
## Removing vector <r_lfp_28640_lfp2>
## Removing vector <r_lfp_28640_out>
## Removing vector <r_lfp_28640_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501582.554456026,2059608.9775715 output=LfpNetwork_lfp_tmp_cumayasa_stream_758
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_758@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501582.554456026,2059608.9775715...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28695_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28695_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28695_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28695_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28695_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28695_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28695_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28695_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28695_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28695_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28695_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28695_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28695_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28695_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_758@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28695_flds>
## Removing raster <r_lfp_28695_heads>
## Removing raster <r_lfp_28695_out>
## Removing vector <r_lfp_28695_heads>
## Removing vector <r_lfp_28695_lfp>
## Removing vector <r_lfp_28695_lfp2>
## Removing vector <r_lfp_28695_out>
## Removing vector <r_lfp_28695_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_758@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501582.554456026,2059608.9775715...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28695_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28695_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28695_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28695_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28695_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28695_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28695_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28695_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28695_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28695_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28695_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28695_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28695_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28695_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_758@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28695_flds>
## Removing raster <r_lfp_28695_heads>
## Removing raster <r_lfp_28695_out>
## Removing vector <r_lfp_28695_heads>
## Removing vector <r_lfp_28695_lfp>
## Removing vector <r_lfp_28695_lfp2>
## Removing vector <r_lfp_28695_out>
## Removing vector <r_lfp_28695_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501220.339741025,2058597.27440201 output=LfpNetwork_lfp_tmp_cumayasa_stream_762
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_762@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501220.339741025,2058597.27440201...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28766_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28766_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28766_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28766_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28766_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28766_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28766_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28766_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28766_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28766_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28766_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28766_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28766_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28766_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_762@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28766_flds>
## Removing raster <r_lfp_28766_heads>
## Removing raster <r_lfp_28766_out>
## Removing vector <r_lfp_28766_heads>
## Removing vector <r_lfp_28766_lfp>
## Removing vector <r_lfp_28766_lfp2>
## Removing vector <r_lfp_28766_out>
## Removing vector <r_lfp_28766_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_762@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501220.339741025,2058597.27440201...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28766_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28766_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28766_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28766_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28766_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28766_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28766_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28766_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28766_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28766_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28766_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28766_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28766_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28766_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_762@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28766_flds>
## Removing raster <r_lfp_28766_heads>
## Removing raster <r_lfp_28766_out>
## Removing vector <r_lfp_28766_heads>
## Removing vector <r_lfp_28766_lfp>
## Removing vector <r_lfp_28766_lfp2>
## Removing vector <r_lfp_28766_out>
## Removing vector <r_lfp_28766_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501257.810228784,2058584.78423943 output=LfpNetwork_lfp_tmp_cumayasa_stream_763
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_763@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501257.810228784,2058584.78423943...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28822_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28822_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28822_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28822_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28822_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28822_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28822_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28822_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28822_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28822_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28822_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28822_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28822_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28822_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_763@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28822_flds>
## Removing raster <r_lfp_28822_heads>
## Removing raster <r_lfp_28822_out>
## Removing vector <r_lfp_28822_heads>
## Removing vector <r_lfp_28822_lfp>
## Removing vector <r_lfp_28822_lfp2>
## Removing vector <r_lfp_28822_out>
## Removing vector <r_lfp_28822_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_763@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501257.810228784,2058584.78423943...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28822_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28822_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28822_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28822_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28822_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28822_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28822_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28822_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28822_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28822_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28822_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28822_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28822_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28822_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_763@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28822_flds>
## Removing raster <r_lfp_28822_heads>
## Removing raster <r_lfp_28822_out>
## Removing vector <r_lfp_28822_heads>
## Removing vector <r_lfp_28822_lfp>
## Removing vector <r_lfp_28822_lfp2>
## Removing vector <r_lfp_28822_out>
## Removing vector <r_lfp_28822_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500933.066001541,2058035.21708563 output=LfpNetwork_lfp_tmp_cumayasa_stream_773
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_773@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500933.066001541,2058035.21708563...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28876_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28876_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28876_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28876_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28876_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28876_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28876_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28876_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28876_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28876_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28876_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28876_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28876_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28876_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_773@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28876_flds>
## Removing raster <r_lfp_28876_heads>
## Removing raster <r_lfp_28876_out>
## Removing vector <r_lfp_28876_heads>
## Removing vector <r_lfp_28876_lfp>
## Removing vector <r_lfp_28876_lfp2>
## Removing vector <r_lfp_28876_out>
## Removing vector <r_lfp_28876_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_773@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500933.066001541,2058035.21708563...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28876_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28876_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28876_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28876_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28876_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28876_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28876_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28876_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28876_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28876_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28876_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28876_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28876_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28876_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_773@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28876_flds>
## Removing raster <r_lfp_28876_heads>
## Removing raster <r_lfp_28876_out>
## Removing vector <r_lfp_28876_heads>
## Removing vector <r_lfp_28876_lfp>
## Removing vector <r_lfp_28876_lfp2>
## Removing vector <r_lfp_28876_out>
## Removing vector <r_lfp_28876_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500420.969335505,2057560.59090735 output=LfpNetwork_lfp_tmp_cumayasa_stream_780
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_780@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500420.969335505,2057560.59090735...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28930_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28930_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28930_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28930_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28930_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28930_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28930_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28930_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28930_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28930_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28930_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28930_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28930_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28930_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_780@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28930_flds>
## Removing raster <r_lfp_28930_heads>
## Removing raster <r_lfp_28930_out>
## Removing vector <r_lfp_28930_heads>
## Removing vector <r_lfp_28930_lfp>
## Removing vector <r_lfp_28930_lfp2>
## Removing vector <r_lfp_28930_out>
## Removing vector <r_lfp_28930_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_780@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500420.969335505,2057560.59090735...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28930_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28930_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28930_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28930_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28930_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28930_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28930_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28930_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28930_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28930_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28930_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28930_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28930_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28930_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_780@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28930_flds>
## Removing raster <r_lfp_28930_heads>
## Removing raster <r_lfp_28930_out>
## Removing vector <r_lfp_28930_heads>
## Removing vector <r_lfp_28930_lfp>
## Removing vector <r_lfp_28930_lfp2>
## Removing vector <r_lfp_28930_out>
## Removing vector <r_lfp_28930_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501032.987302231,2058222.56952442 output=LfpNetwork_lfp_tmp_cumayasa_stream_789
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_789@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501032.987302231,2058222.56952442...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28994_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28994_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28994_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28994_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28994_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28994_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28994_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28994_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28994_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28994_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28994_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28994_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28994_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28994_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_789@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28994_flds>
## Removing raster <r_lfp_28994_heads>
## Removing raster <r_lfp_28994_out>
## Removing vector <r_lfp_28994_heads>
## Removing vector <r_lfp_28994_lfp>
## Removing vector <r_lfp_28994_lfp2>
## Removing vector <r_lfp_28994_out>
## Removing vector <r_lfp_28994_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_789@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501032.987302231,2058222.56952442...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_28994_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_28994_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_28994_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28994_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_28994_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_28994_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_28994_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28994_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_28994_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_28994_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28994_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_28994_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_28994_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_28994_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_789@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_28994_flds>
## Removing raster <r_lfp_28994_heads>
## Removing raster <r_lfp_28994_out>
## Removing vector <r_lfp_28994_heads>
## Removing vector <r_lfp_28994_lfp>
## Removing vector <r_lfp_28994_lfp2>
## Removing vector <r_lfp_28994_out>
## Removing vector <r_lfp_28994_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501107.928277749,2058384.94163805 output=LfpNetwork_lfp_tmp_cumayasa_stream_828
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_828@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501107.928277749,2058384.94163805...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29052_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29052_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29052_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29052_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29052_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29052_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29052_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29052_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29052_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29052_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29052_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29052_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29052_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29052_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_828@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29052_flds>
## Removing raster <r_lfp_29052_heads>
## Removing raster <r_lfp_29052_out>
## Removing vector <r_lfp_29052_heads>
## Removing vector <r_lfp_29052_lfp>
## Removing vector <r_lfp_29052_lfp2>
## Removing vector <r_lfp_29052_out>
## Removing vector <r_lfp_29052_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_828@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501107.928277749,2058384.94163805...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29052_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29052_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29052_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29052_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29052_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29052_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29052_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29052_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29052_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29052_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29052_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29052_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29052_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29052_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_828@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29052_flds>
## Removing raster <r_lfp_29052_heads>
## Removing raster <r_lfp_29052_out>
## Removing vector <r_lfp_29052_heads>
## Removing vector <r_lfp_29052_lfp>
## Removing vector <r_lfp_29052_lfp2>
## Removing vector <r_lfp_29052_out>
## Removing vector <r_lfp_29052_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=501020.497139645,2058272.53017477 output=LfpNetwork_lfp_tmp_cumayasa_stream_834
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_834@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501020.497139645,2058272.53017477...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29112_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29112_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29112_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29112_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29112_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29112_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29112_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29112_path@PERMANENT>
## 0 lines broken
## Building topology for vector map <r_lfp_29112_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29112_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29112_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29112_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29112_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29112_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_834@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29112_flds>
## Removing raster <r_lfp_29112_heads>
## Removing raster <r_lfp_29112_out>
## Removing vector <r_lfp_29112_heads>
## Removing vector <r_lfp_29112_lfp>
## Removing vector <r_lfp_29112_lfp2>
## Removing vector <r_lfp_29112_out>
## Removing vector <r_lfp_29112_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_834@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 501020.497139645,2058272.53017477...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29112_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29112_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29112_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29112_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29112_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29112_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29112_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29112_path@PERMANENT>
## 0 lines broken
## Building topology for vector map <r_lfp_29112_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29112_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29112_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29112_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29112_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29112_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_834@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29112_flds>
## Removing raster <r_lfp_29112_heads>
## Removing raster <r_lfp_29112_out>
## Removing vector <r_lfp_29112_heads>
## Removing vector <r_lfp_29112_lfp>
## Removing vector <r_lfp_29112_lfp2>
## Removing vector <r_lfp_29112_out>
## Removing vector <r_lfp_29112_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500545.870961368,2057660.51220804 output=LfpNetwork_lfp_tmp_cumayasa_stream_852
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_852@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500545.870961368,2057660.51220804...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29166_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29166_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29166_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29166_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29166_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29166_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29166_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29166_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29166_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29166_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29166_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29166_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29166_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29166_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_852@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29166_flds>
## Removing raster <r_lfp_29166_heads>
## Removing raster <r_lfp_29166_out>
## Removing vector <r_lfp_29166_heads>
## Removing vector <r_lfp_29166_lfp>
## Removing vector <r_lfp_29166_lfp2>
## Removing vector <r_lfp_29166_out>
## Removing vector <r_lfp_29166_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_852@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500545.870961368,2057660.51220804...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29166_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29166_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29166_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29166_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29166_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29166_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29166_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29166_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29166_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29166_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29166_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29166_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29166_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29166_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_852@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29166_flds>
## Removing raster <r_lfp_29166_heads>
## Removing raster <r_lfp_29166_out>
## Removing vector <r_lfp_29166_heads>
## Removing vector <r_lfp_29166_lfp>
## Removing vector <r_lfp_29166_lfp2>
## Removing vector <r_lfp_29166_out>
## Removing vector <r_lfp_29166_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500895.595513782,2058022.72692304 output=LfpNetwork_lfp_tmp_cumayasa_stream_863
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_863@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500895.595513782,2058022.72692304...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29226_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29226_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29226_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29226_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29226_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29226_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29226_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29226_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29226_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29226_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29226_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29226_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29226_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29226_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_863@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29226_flds>
## Removing raster <r_lfp_29226_heads>
## Removing raster <r_lfp_29226_out>
## Removing vector <r_lfp_29226_heads>
## Removing vector <r_lfp_29226_lfp>
## Removing vector <r_lfp_29226_lfp2>
## Removing vector <r_lfp_29226_out>
## Removing vector <r_lfp_29226_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_863@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500895.595513782,2058022.72692304...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29226_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29226_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29226_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29226_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29226_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29226_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29226_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29226_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29226_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29226_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29226_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29226_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29226_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29226_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_863@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29226_flds>
## Removing raster <r_lfp_29226_heads>
## Removing raster <r_lfp_29226_out>
## Removing vector <r_lfp_29226_heads>
## Removing vector <r_lfp_29226_lfp>
## Removing vector <r_lfp_29226_lfp2>
## Removing vector <r_lfp_29226_out>
## Removing vector <r_lfp_29226_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500833.144700851,2057847.86464684 output=LfpNetwork_lfp_tmp_cumayasa_stream_866
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_866@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500833.144700851,2057847.86464684...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29282_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29282_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29282_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29282_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29282_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29282_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29282_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29282_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29282_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29282_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29282_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29282_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29282_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29282_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_866@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29282_flds>
## Removing raster <r_lfp_29282_heads>
## Removing raster <r_lfp_29282_out>
## Removing vector <r_lfp_29282_heads>
## Removing vector <r_lfp_29282_lfp>
## Removing vector <r_lfp_29282_lfp2>
## Removing vector <r_lfp_29282_out>
## Removing vector <r_lfp_29282_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_866@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500833.144700851,2057847.86464684...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29282_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29282_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29282_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29282_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29282_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29282_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29282_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29282_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29282_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29282_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29282_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29282_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29282_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29282_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_866@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29282_flds>
## Removing raster <r_lfp_29282_heads>
## Removing raster <r_lfp_29282_out>
## Removing vector <r_lfp_29282_heads>
## Removing vector <r_lfp_29282_lfp>
## Removing vector <r_lfp_29282_lfp2>
## Removing vector <r_lfp_29282_out>
## Removing vector <r_lfp_29282_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500021.284132745,2056523.9074127 output=LfpNetwork_lfp_tmp_cumayasa_stream_875
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500021.284132745,2056523.9074127...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29338_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29338_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29338_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29338_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29338_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29338_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29338_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29338_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_29338_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29338_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29338_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_29338_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29338_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29338_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29338_flds>
## Removing raster <r_lfp_29338_heads>
## Removing raster <r_lfp_29338_out>
## Removing vector <r_lfp_29338_heads>
## Removing vector <r_lfp_29338_lfp>
## Removing vector <r_lfp_29338_lfp2>
## Removing vector <r_lfp_29338_out>
## Removing vector <r_lfp_29338_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500021.284132745,2056523.9074127...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29338_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29338_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29338_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29338_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29338_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29338_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29338_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29338_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_29338_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29338_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29338_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_29338_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29338_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29338_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29338_flds>
## Removing raster <r_lfp_29338_heads>
## Removing raster <r_lfp_29338_out>
## Removing vector <r_lfp_29338_heads>
## Removing vector <r_lfp_29338_lfp>
## Removing vector <r_lfp_29338_lfp2>
## Removing vector <r_lfp_29338_out>
## Removing vector <r_lfp_29338_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_875 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_875> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_875> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_875 output=LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_875>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500620.811936885,2057660.51220804 output=LfpNetwork_lfp_tmp_cumayasa_stream_903
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_903@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500620.811936885,2057660.51220804...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29407_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29407_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29407_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29407_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29407_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29407_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29407_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29407_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29407_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29407_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29407_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29407_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29407_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29407_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_903@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29407_flds>
## Removing raster <r_lfp_29407_heads>
## Removing raster <r_lfp_29407_out>
## Removing vector <r_lfp_29407_heads>
## Removing vector <r_lfp_29407_lfp>
## Removing vector <r_lfp_29407_lfp2>
## Removing vector <r_lfp_29407_out>
## Removing vector <r_lfp_29407_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_903@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500620.811936885,2057660.51220804...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29407_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29407_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29407_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29407_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29407_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29407_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29407_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29407_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29407_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29407_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29407_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29407_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29407_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29407_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_903@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29407_flds>
## Removing raster <r_lfp_29407_heads>
## Removing raster <r_lfp_29407_out>
## Removing vector <r_lfp_29407_heads>
## Removing vector <r_lfp_29407_lfp>
## Removing vector <r_lfp_29407_lfp2>
## Removing vector <r_lfp_29407_out>
## Removing vector <r_lfp_29407_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500221.126734125,2057085.96472908 output=LfpNetwork_lfp_tmp_cumayasa_stream_974
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_974@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500221.126734125,2057085.96472908...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29467_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29467_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29467_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29467_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29467_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29467_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29467_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29467_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29467_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29467_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29467_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29467_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29467_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29467_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_974@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29467_flds>
## Removing raster <r_lfp_29467_heads>
## Removing raster <r_lfp_29467_out>
## Removing vector <r_lfp_29467_heads>
## Removing vector <r_lfp_29467_lfp>
## Removing vector <r_lfp_29467_lfp2>
## Removing vector <r_lfp_29467_out>
## Removing vector <r_lfp_29467_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_974@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500221.126734125,2057085.96472908...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29467_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29467_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29467_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29467_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29467_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29467_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29467_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29467_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29467_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29467_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29467_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29467_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29467_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29467_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_974@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29467_flds>
## Removing raster <r_lfp_29467_heads>
## Removing raster <r_lfp_29467_out>
## Removing vector <r_lfp_29467_heads>
## Removing vector <r_lfp_29467_lfp>
## Removing vector <r_lfp_29467_lfp2>
## Removing vector <r_lfp_29467_out>
## Removing vector <r_lfp_29467_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500283.577547056,2057210.86635494 output=LfpNetwork_lfp_tmp_cumayasa_stream_979
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500283.577547056,2057210.86635494...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29523_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29523_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29523_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29523_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29523_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29523_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29523_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29523_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_29523_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29523_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29523_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_29523_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29523_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29523_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29523_flds>
## Removing raster <r_lfp_29523_heads>
## Removing raster <r_lfp_29523_out>
## Removing vector <r_lfp_29523_heads>
## Removing vector <r_lfp_29523_lfp>
## Removing vector <r_lfp_29523_lfp2>
## Removing vector <r_lfp_29523_out>
## Removing vector <r_lfp_29523_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500283.577547056,2057210.86635494...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29523_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29523_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29523_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29523_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29523_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29523_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29523_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29523_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_29523_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29523_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29523_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_29523_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29523_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29523_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29523_flds>
## Removing raster <r_lfp_29523_heads>
## Removing raster <r_lfp_29523_out>
## Removing vector <r_lfp_29523_heads>
## Removing vector <r_lfp_29523_lfp>
## Removing vector <r_lfp_29523_lfp2>
## Removing vector <r_lfp_29523_out>
## Removing vector <r_lfp_29523_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_979 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_979> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_979> already exists
## and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_979 output=LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_979>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499047.051451018,2055524.6944058 output=LfpNetwork_lfp_tmp_cumayasa_stream_992
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_992@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499047.051451018,2055524.6944058...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29602_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29602_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29602_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29602_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29602_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29602_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29602_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29602_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29602_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29602_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29602_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29602_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29602_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29602_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_992@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29602_flds>
## Removing raster <r_lfp_29602_heads>
## Removing raster <r_lfp_29602_out>
## Removing vector <r_lfp_29602_heads>
## Removing vector <r_lfp_29602_lfp>
## Removing vector <r_lfp_29602_lfp2>
## Removing vector <r_lfp_29602_out>
## Removing vector <r_lfp_29602_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_992@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499047.051451018,2055524.6944058...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29602_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29602_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29602_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29602_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29602_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29602_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29602_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29602_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29602_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29602_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29602_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29602_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29602_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29602_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_992@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29602_flds>
## Removing raster <r_lfp_29602_heads>
## Removing raster <r_lfp_29602_out>
## Removing vector <r_lfp_29602_heads>
## Removing vector <r_lfp_29602_lfp>
## Removing vector <r_lfp_29602_lfp2>
## Removing vector <r_lfp_29602_out>
## Removing vector <r_lfp_29602_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500308.557872229,2057185.88602977 output=LfpNetwork_lfp_tmp_cumayasa_stream_998
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_998@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500308.557872229,2057185.88602977...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29658_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29658_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29658_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29658_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29658_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29658_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29658_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29658_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29658_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29658_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29658_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29658_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29658_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29658_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_998@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29658_flds>
## Removing raster <r_lfp_29658_heads>
## Removing raster <r_lfp_29658_out>
## Removing vector <r_lfp_29658_heads>
## Removing vector <r_lfp_29658_lfp>
## Removing vector <r_lfp_29658_lfp2>
## Removing vector <r_lfp_29658_out>
## Removing vector <r_lfp_29658_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_998@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500308.557872229,2057185.88602977...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29658_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29658_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29658_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29658_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29658_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29658_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29658_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29658_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29658_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29658_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29658_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29658_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29658_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29658_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_998@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29658_flds>
## Removing raster <r_lfp_29658_heads>
## Removing raster <r_lfp_29658_out>
## Removing vector <r_lfp_29658_heads>
## Removing vector <r_lfp_29658_lfp>
## Removing vector <r_lfp_29658_lfp2>
## Removing vector <r_lfp_29658_out>
## Removing vector <r_lfp_29658_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498947.130150328,2055000.10757717 output=LfpNetwork_lfp_tmp_cumayasa_stream_1000
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498947.130150328,2055000.10757717...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29716_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29716_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29716_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29716_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29716_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29716_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29716_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29716_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_29716_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29716_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29716_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_29716_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29716_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29716_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29716_flds>
## Removing raster <r_lfp_29716_heads>
## Removing raster <r_lfp_29716_out>
## Removing vector <r_lfp_29716_heads>
## Removing vector <r_lfp_29716_lfp>
## Removing vector <r_lfp_29716_lfp2>
## Removing vector <r_lfp_29716_out>
## Removing vector <r_lfp_29716_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498947.130150328,2055000.10757717...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29716_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29716_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29716_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29716_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29716_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29716_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29716_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29716_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_29716_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29716_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29716_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_29716_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29716_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_29716_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29716_flds>
## Removing raster <r_lfp_29716_heads>
## Removing raster <r_lfp_29716_out>
## Removing vector <r_lfp_29716_heads>
## Removing vector <r_lfp_29716_lfp>
## Removing vector <r_lfp_29716_lfp2>
## Removing vector <r_lfp_29716_out>
## Removing vector <r_lfp_29716_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_1000 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1000> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1000> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1000 output=LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1000>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490791.053981508,2048055.57717922 output=LfpNetwork_lfp_tmp_cumayasa_stream_1001
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1001@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490791.053981508,2048055.57717922...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29791_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29791_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29791_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29791_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29791_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29791_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29791_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29791_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29791_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29791_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29791_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29791_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29791_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29791_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1001@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29791_flds>
## Removing raster <r_lfp_29791_heads>
## Removing raster <r_lfp_29791_out>
## Removing vector <r_lfp_29791_heads>
## Removing vector <r_lfp_29791_lfp>
## Removing vector <r_lfp_29791_lfp2>
## Removing vector <r_lfp_29791_out>
## Removing vector <r_lfp_29791_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1001@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490791.053981508,2048055.57717922...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29791_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29791_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29791_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29791_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29791_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29791_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29791_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29791_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29791_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29791_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29791_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29791_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29791_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29791_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1001@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29791_flds>
## Removing raster <r_lfp_29791_heads>
## Removing raster <r_lfp_29791_out>
## Removing vector <r_lfp_29791_heads>
## Removing vector <r_lfp_29791_lfp>
## Removing vector <r_lfp_29791_lfp2>
## Removing vector <r_lfp_29791_out>
## Removing vector <r_lfp_29791_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490503.780242025,2047406.08872473 output=LfpNetwork_lfp_tmp_cumayasa_stream_1009
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1009@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490503.780242025,2047406.08872473...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29849_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29849_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29849_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29849_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29849_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29849_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29849_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29849_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29849_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29849_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29849_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29849_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29849_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29849_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1009@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29849_flds>
## Removing raster <r_lfp_29849_heads>
## Removing raster <r_lfp_29849_out>
## Removing vector <r_lfp_29849_heads>
## Removing vector <r_lfp_29849_lfp>
## Removing vector <r_lfp_29849_lfp2>
## Removing vector <r_lfp_29849_out>
## Removing vector <r_lfp_29849_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1009@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490503.780242025,2047406.08872473...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29849_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29849_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29849_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29849_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29849_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29849_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29849_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29849_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29849_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29849_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29849_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29849_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29849_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29849_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1009@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29849_flds>
## Removing raster <r_lfp_29849_heads>
## Removing raster <r_lfp_29849_out>
## Removing vector <r_lfp_29849_heads>
## Removing vector <r_lfp_29849_lfp>
## Removing vector <r_lfp_29849_lfp2>
## Removing vector <r_lfp_29849_out>
## Removing vector <r_lfp_29849_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499908.872669469,2056523.9074127 output=LfpNetwork_lfp_tmp_cumayasa_stream_1039
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1039@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499908.872669469,2056523.9074127...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29901_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29901_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29901_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29901_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29901_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29901_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29901_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29901_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29901_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29901_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29901_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29901_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29901_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29901_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1039@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29901_flds>
## Removing raster <r_lfp_29901_heads>
## Removing raster <r_lfp_29901_out>
## Removing vector <r_lfp_29901_heads>
## Removing vector <r_lfp_29901_lfp>
## Removing vector <r_lfp_29901_lfp2>
## Removing vector <r_lfp_29901_out>
## Removing vector <r_lfp_29901_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1039@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499908.872669469,2056523.9074127...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29901_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29901_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29901_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29901_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29901_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29901_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29901_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29901_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29901_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29901_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29901_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29901_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29901_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29901_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1039@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29901_flds>
## Removing raster <r_lfp_29901_heads>
## Removing raster <r_lfp_29901_out>
## Removing vector <r_lfp_29901_heads>
## Removing vector <r_lfp_29901_lfp>
## Removing vector <r_lfp_29901_lfp2>
## Removing vector <r_lfp_29901_out>
## Removing vector <r_lfp_29901_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498497.484297223,2054338.1289601 output=LfpNetwork_lfp_tmp_cumayasa_stream_1052
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1052@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498497.484297223,2054338.1289601...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29962_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29962_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29962_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29962_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29962_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29962_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29962_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29962_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29962_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29962_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29962_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29962_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29962_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29962_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1052@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29962_flds>
## Removing raster <r_lfp_29962_heads>
## Removing raster <r_lfp_29962_out>
## Removing vector <r_lfp_29962_heads>
## Removing vector <r_lfp_29962_lfp>
## Removing vector <r_lfp_29962_lfp2>
## Removing vector <r_lfp_29962_out>
## Removing vector <r_lfp_29962_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1052@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498497.484297223,2054338.1289601...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_29962_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_29962_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_29962_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29962_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_29962_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_29962_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_29962_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29962_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_29962_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_29962_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29962_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_29962_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_29962_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_29962_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1052@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_29962_flds>
## Removing raster <r_lfp_29962_heads>
## Removing raster <r_lfp_29962_out>
## Removing vector <r_lfp_29962_heads>
## Removing vector <r_lfp_29962_lfp>
## Removing vector <r_lfp_29962_lfp2>
## Removing vector <r_lfp_29962_out>
## Removing vector <r_lfp_29962_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=500121.205433435,2056911.10245287 output=LfpNetwork_lfp_tmp_cumayasa_stream_1061
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1061@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500121.205433435,2056911.10245287...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30020_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30020_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30020_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30020_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30020_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30020_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30020_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30020_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30020_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30020_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30020_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30020_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30020_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30020_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1061@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30020_flds>
## Removing raster <r_lfp_30020_heads>
## Removing raster <r_lfp_30020_out>
## Removing vector <r_lfp_30020_heads>
## Removing vector <r_lfp_30020_lfp>
## Removing vector <r_lfp_30020_lfp2>
## Removing vector <r_lfp_30020_out>
## Removing vector <r_lfp_30020_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1061@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 500121.205433435,2056911.10245287...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30020_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30020_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30020_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30020_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30020_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30020_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30020_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30020_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30020_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30020_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30020_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30020_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30020_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30020_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1061@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30020_flds>
## Removing raster <r_lfp_30020_heads>
## Removing raster <r_lfp_30020_out>
## Removing vector <r_lfp_30020_heads>
## Removing vector <r_lfp_30020_lfp>
## Removing vector <r_lfp_30020_lfp2>
## Removing vector <r_lfp_30020_out>
## Removing vector <r_lfp_30020_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499833.931693951,2056061.771397 output=LfpNetwork_lfp_tmp_cumayasa_stream_1069
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1069@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499833.931693951,2056061.771397...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30076_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30076_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30076_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30076_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30076_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30076_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30076_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30076_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30076_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30076_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30076_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30076_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30076_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30076_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1069@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30076_flds>
## Removing raster <r_lfp_30076_heads>
## Removing raster <r_lfp_30076_out>
## Removing vector <r_lfp_30076_heads>
## Removing vector <r_lfp_30076_lfp>
## Removing vector <r_lfp_30076_lfp2>
## Removing vector <r_lfp_30076_out>
## Removing vector <r_lfp_30076_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1069@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499833.931693951,2056061.771397...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30076_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30076_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30076_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30076_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30076_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30076_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30076_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30076_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30076_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30076_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30076_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30076_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30076_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30076_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1069@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30076_flds>
## Removing raster <r_lfp_30076_heads>
## Removing raster <r_lfp_30076_out>
## Removing vector <r_lfp_30076_heads>
## Removing vector <r_lfp_30076_lfp>
## Removing vector <r_lfp_30076_lfp2>
## Removing vector <r_lfp_30076_out>
## Removing vector <r_lfp_30076_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499833.931693951,2056174.18286028 output=LfpNetwork_lfp_tmp_cumayasa_stream_1073
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1073@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499833.931693951,2056174.18286028...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30136_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30136_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30136_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30136_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30136_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30136_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30136_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30136_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30136_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30136_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30136_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30136_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30136_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30136_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1073@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30136_flds>
## Removing raster <r_lfp_30136_heads>
## Removing raster <r_lfp_30136_out>
## Removing vector <r_lfp_30136_heads>
## Removing vector <r_lfp_30136_lfp>
## Removing vector <r_lfp_30136_lfp2>
## Removing vector <r_lfp_30136_out>
## Removing vector <r_lfp_30136_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1073@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499833.931693951,2056174.18286028...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30136_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30136_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30136_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30136_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30136_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30136_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30136_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30136_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30136_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30136_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30136_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30136_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30136_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30136_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1073@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30136_flds>
## Removing raster <r_lfp_30136_heads>
## Removing raster <r_lfp_30136_out>
## Removing vector <r_lfp_30136_heads>
## Removing vector <r_lfp_30136_lfp>
## Removing vector <r_lfp_30136_lfp2>
## Removing vector <r_lfp_30136_out>
## Removing vector <r_lfp_30136_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=494475.651944451,2050516.13920871 output=LfpNetwork_lfp_tmp_cumayasa_stream_1081
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1081@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494475.651944451,2050516.13920871...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30195_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30195_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30195_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30195_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30195_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30195_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30195_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30195_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30195_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30195_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30195_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30195_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30195_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30195_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1081@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30195_flds>
## Removing raster <r_lfp_30195_heads>
## Removing raster <r_lfp_30195_out>
## Removing vector <r_lfp_30195_heads>
## Removing vector <r_lfp_30195_lfp>
## Removing vector <r_lfp_30195_lfp2>
## Removing vector <r_lfp_30195_out>
## Removing vector <r_lfp_30195_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1081@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494475.651944451,2050516.13920871...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30195_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30195_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30195_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30195_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30195_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30195_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30195_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30195_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30195_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30195_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30195_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30195_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30195_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30195_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1081@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30195_flds>
## Removing raster <r_lfp_30195_heads>
## Removing raster <r_lfp_30195_out>
## Removing vector <r_lfp_30195_heads>
## Removing vector <r_lfp_30195_lfp>
## Removing vector <r_lfp_30195_lfp2>
## Removing vector <r_lfp_30195_out>
## Removing vector <r_lfp_30195_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499559.148117054,2055712.04684459 output=LfpNetwork_lfp_tmp_cumayasa_stream_1090
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1090@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499559.148117054,2055712.04684459...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30249_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30249_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30249_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30249_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30249_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30249_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30249_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30249_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30249_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30249_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30249_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30249_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30249_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30249_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1090@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30249_flds>
## Removing raster <r_lfp_30249_heads>
## Removing raster <r_lfp_30249_out>
## Removing vector <r_lfp_30249_heads>
## Removing vector <r_lfp_30249_lfp>
## Removing vector <r_lfp_30249_lfp2>
## Removing vector <r_lfp_30249_out>
## Removing vector <r_lfp_30249_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1090@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499559.148117054,2055712.04684459...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30249_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30249_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30249_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30249_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30249_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30249_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30249_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30249_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30249_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30249_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30249_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30249_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30249_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30249_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1090@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30249_flds>
## Removing raster <r_lfp_30249_heads>
## Removing raster <r_lfp_30249_out>
## Removing vector <r_lfp_30249_heads>
## Removing vector <r_lfp_30249_lfp>
## Removing vector <r_lfp_30249_lfp2>
## Removing vector <r_lfp_30249_out>
## Removing vector <r_lfp_30249_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499196.933402053,2055662.08619424 output=LfpNetwork_lfp_tmp_cumayasa_stream_1100
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1100@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499196.933402053,2055662.08619424...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30309_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30309_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30309_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30309_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30309_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30309_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30309_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30309_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30309_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30309_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30309_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30309_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30309_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30309_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1100@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30309_flds>
## Removing raster <r_lfp_30309_heads>
## Removing raster <r_lfp_30309_out>
## Removing vector <r_lfp_30309_heads>
## Removing vector <r_lfp_30309_lfp>
## Removing vector <r_lfp_30309_lfp2>
## Removing vector <r_lfp_30309_out>
## Removing vector <r_lfp_30309_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1100@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499196.933402053,2055662.08619424...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30309_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30309_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30309_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30309_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30309_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30309_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30309_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30309_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30309_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30309_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30309_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30309_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30309_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30309_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1100@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30309_flds>
## Removing raster <r_lfp_30309_heads>
## Removing raster <r_lfp_30309_out>
## Removing vector <r_lfp_30309_heads>
## Removing vector <r_lfp_30309_lfp>
## Removing vector <r_lfp_30309_lfp2>
## Removing vector <r_lfp_30309_out>
## Removing vector <r_lfp_30309_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=496761.351697735,2053488.79790424 output=LfpNetwork_lfp_tmp_cumayasa_stream_1108
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1108@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496761.351697735,2053488.79790424...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30365_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30365_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30365_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30365_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30365_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30365_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30365_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30365_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30365_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30365_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30365_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30365_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30365_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30365_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1108@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30365_flds>
## Removing raster <r_lfp_30365_heads>
## Removing raster <r_lfp_30365_out>
## Removing vector <r_lfp_30365_heads>
## Removing vector <r_lfp_30365_lfp>
## Removing vector <r_lfp_30365_lfp2>
## Removing vector <r_lfp_30365_out>
## Removing vector <r_lfp_30365_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1108@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496761.351697735,2053488.79790424...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30365_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30365_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30365_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30365_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30365_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30365_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30365_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30365_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30365_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30365_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30365_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30365_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30365_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30365_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1108@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30365_flds>
## Removing raster <r_lfp_30365_heads>
## Removing raster <r_lfp_30365_out>
## Removing vector <r_lfp_30365_heads>
## Removing vector <r_lfp_30365_lfp>
## Removing vector <r_lfp_30365_lfp2>
## Removing vector <r_lfp_30365_out>
## Removing vector <r_lfp_30365_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=494937.787960142,2051103.17685026 output=LfpNetwork_lfp_tmp_cumayasa_stream_1109
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1109@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494937.787960142,2051103.17685026...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30423_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30423_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30423_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30423_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30423_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30423_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30423_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30423_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30423_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30423_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30423_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30423_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30423_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30423_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1109@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30423_flds>
## Removing raster <r_lfp_30423_heads>
## Removing raster <r_lfp_30423_out>
## Removing vector <r_lfp_30423_heads>
## Removing vector <r_lfp_30423_lfp>
## Removing vector <r_lfp_30423_lfp2>
## Removing vector <r_lfp_30423_out>
## Removing vector <r_lfp_30423_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1109@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494937.787960142,2051103.17685026...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30423_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30423_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30423_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30423_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30423_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30423_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30423_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30423_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30423_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30423_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30423_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30423_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30423_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30423_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1109@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30423_flds>
## Removing raster <r_lfp_30423_heads>
## Removing raster <r_lfp_30423_out>
## Removing vector <r_lfp_30423_heads>
## Removing vector <r_lfp_30423_lfp>
## Removing vector <r_lfp_30423_lfp2>
## Removing vector <r_lfp_30423_out>
## Removing vector <r_lfp_30423_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499434.246491192,2055737.02716976 output=LfpNetwork_lfp_tmp_cumayasa_stream_1149
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1149@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499434.246491192,2055737.02716976...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30481_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30481_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30481_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30481_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30481_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30481_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30481_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30481_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30481_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30481_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30481_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30481_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30481_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30481_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1149@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30481_flds>
## Removing raster <r_lfp_30481_heads>
## Removing raster <r_lfp_30481_out>
## Removing vector <r_lfp_30481_heads>
## Removing vector <r_lfp_30481_lfp>
## Removing vector <r_lfp_30481_lfp2>
## Removing vector <r_lfp_30481_out>
## Removing vector <r_lfp_30481_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1149@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499434.246491192,2055737.02716976...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30481_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30481_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30481_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30481_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30481_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30481_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30481_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30481_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30481_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30481_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30481_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30481_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30481_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30481_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1149@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30481_flds>
## Removing raster <r_lfp_30481_heads>
## Removing raster <r_lfp_30481_out>
## Removing vector <r_lfp_30481_heads>
## Removing vector <r_lfp_30481_lfp>
## Removing vector <r_lfp_30481_lfp2>
## Removing vector <r_lfp_30481_out>
## Removing vector <r_lfp_30481_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490328.917965817,2047143.79531042 output=LfpNetwork_lfp_tmp_cumayasa_stream_1152
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490328.917965817,2047143.79531042...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30543_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30543_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30543_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30543_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30543_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30543_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30543_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_30543_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_30543_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30543_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30543_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_30543_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30543_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_30543_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30543_flds>
## Removing raster <r_lfp_30543_heads>
## Removing raster <r_lfp_30543_out>
## Removing vector <r_lfp_30543_heads>
## Removing vector <r_lfp_30543_lfp>
## Removing vector <r_lfp_30543_lfp2>
## Removing vector <r_lfp_30543_out>
## Removing vector <r_lfp_30543_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490328.917965817,2047143.79531042...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30543_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30543_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30543_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30543_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30543_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30543_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30543_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_30543_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_30543_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30543_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30543_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_30543_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30543_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_30543_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30543_flds>
## Removing raster <r_lfp_30543_heads>
## Removing raster <r_lfp_30543_out>
## Removing vector <r_lfp_30543_heads>
## Removing vector <r_lfp_30543_lfp>
## Removing vector <r_lfp_30543_lfp2>
## Removing vector <r_lfp_30543_out>
## Removing vector <r_lfp_30543_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_1152 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1152> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1152> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1152 output=LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1152>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495599.766577214,2051827.60628027 output=LfpNetwork_lfp_tmp_cumayasa_stream_1159
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1159@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495599.766577214,2051827.60628027...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30620_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30620_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30620_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30620_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30620_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30620_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30620_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30620_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30620_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30620_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30620_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30620_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30620_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30620_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1159@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30620_flds>
## Removing raster <r_lfp_30620_heads>
## Removing raster <r_lfp_30620_out>
## Removing vector <r_lfp_30620_heads>
## Removing vector <r_lfp_30620_lfp>
## Removing vector <r_lfp_30620_lfp2>
## Removing vector <r_lfp_30620_out>
## Removing vector <r_lfp_30620_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1159@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495599.766577214,2051827.60628027...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30620_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30620_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30620_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30620_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30620_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30620_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30620_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30620_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30620_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30620_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30620_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30620_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30620_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30620_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1159@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30620_flds>
## Removing raster <r_lfp_30620_heads>
## Removing raster <r_lfp_30620_out>
## Removing vector <r_lfp_30620_heads>
## Removing vector <r_lfp_30620_lfp>
## Removing vector <r_lfp_30620_lfp2>
## Removing vector <r_lfp_30620_out>
## Removing vector <r_lfp_30620_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499321.835027915,2055662.08619424 output=LfpNetwork_lfp_tmp_cumayasa_stream_1222
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499321.835027915,2055662.08619424...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30680_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30680_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30680_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30680_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30680_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30680_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30680_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_30680_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_30680_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30680_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30680_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_30680_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30680_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_30680_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30680_flds>
## Removing raster <r_lfp_30680_heads>
## Removing raster <r_lfp_30680_out>
## Removing vector <r_lfp_30680_heads>
## Removing vector <r_lfp_30680_lfp>
## Removing vector <r_lfp_30680_lfp2>
## Removing vector <r_lfp_30680_out>
## Removing vector <r_lfp_30680_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499321.835027915,2055662.08619424...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30680_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30680_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30680_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30680_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30680_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30680_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30680_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_30680_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_30680_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30680_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30680_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_30680_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30680_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_30680_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30680_flds>
## Removing raster <r_lfp_30680_heads>
## Removing raster <r_lfp_30680_out>
## Removing vector <r_lfp_30680_heads>
## Removing vector <r_lfp_30680_lfp>
## Removing vector <r_lfp_30680_lfp2>
## Removing vector <r_lfp_30680_out>
## Removing vector <r_lfp_30680_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_1222 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1222> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1222> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1222 output=LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1222>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491428.052273407,2048630.12465819 output=LfpNetwork_lfp_tmp_cumayasa_stream_1242
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1242@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491428.052273407,2048630.12465819...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30761_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30761_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30761_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30761_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30761_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30761_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30761_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30761_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30761_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30761_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30761_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30761_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30761_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30761_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1242@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30761_flds>
## Removing raster <r_lfp_30761_heads>
## Removing raster <r_lfp_30761_out>
## Removing vector <r_lfp_30761_heads>
## Removing vector <r_lfp_30761_lfp>
## Removing vector <r_lfp_30761_lfp2>
## Removing vector <r_lfp_30761_out>
## Removing vector <r_lfp_30761_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1242@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491428.052273407,2048630.12465819...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30761_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30761_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30761_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30761_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30761_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30761_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30761_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30761_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30761_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30761_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30761_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30761_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30761_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30761_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1242@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30761_flds>
## Removing raster <r_lfp_30761_heads>
## Removing raster <r_lfp_30761_out>
## Removing vector <r_lfp_30761_heads>
## Removing vector <r_lfp_30761_lfp>
## Removing vector <r_lfp_30761_lfp2>
## Removing vector <r_lfp_30761_out>
## Removing vector <r_lfp_30761_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490528.760567197,2047655.89197646 output=LfpNetwork_lfp_tmp_cumayasa_stream_1324
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1324@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490528.760567197,2047655.89197646...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30815_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30815_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30815_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30815_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30815_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30815_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30815_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30815_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30815_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30815_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30815_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30815_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30815_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30815_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1324@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30815_flds>
## Removing raster <r_lfp_30815_heads>
## Removing raster <r_lfp_30815_out>
## Removing vector <r_lfp_30815_heads>
## Removing vector <r_lfp_30815_lfp>
## Removing vector <r_lfp_30815_lfp2>
## Removing vector <r_lfp_30815_out>
## Removing vector <r_lfp_30815_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1324@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490528.760567197,2047655.89197646...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30815_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30815_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30815_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30815_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30815_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30815_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30815_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30815_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30815_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30815_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30815_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30815_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30815_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30815_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1324@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30815_flds>
## Removing raster <r_lfp_30815_heads>
## Removing raster <r_lfp_30815_out>
## Removing vector <r_lfp_30815_heads>
## Removing vector <r_lfp_30815_lfp>
## Removing vector <r_lfp_30815_lfp2>
## Removing vector <r_lfp_30815_out>
## Removing vector <r_lfp_30815_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=496673.920559631,2053376.38644096 output=LfpNetwork_lfp_tmp_cumayasa_stream_1326
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1326@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496673.920559631,2053376.38644096...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30876_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30876_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30876_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30876_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30876_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30876_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30876_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30876_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30876_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30876_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30876_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30876_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30876_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30876_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1326@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30876_flds>
## Removing raster <r_lfp_30876_heads>
## Removing raster <r_lfp_30876_out>
## Removing vector <r_lfp_30876_heads>
## Removing vector <r_lfp_30876_lfp>
## Removing vector <r_lfp_30876_lfp2>
## Removing vector <r_lfp_30876_out>
## Removing vector <r_lfp_30876_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1326@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496673.920559631,2053376.38644096...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30876_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30876_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30876_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30876_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30876_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30876_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30876_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30876_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30876_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30876_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30876_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30876_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30876_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30876_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1326@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30876_flds>
## Removing raster <r_lfp_30876_heads>
## Removing raster <r_lfp_30876_out>
## Removing vector <r_lfp_30876_heads>
## Removing vector <r_lfp_30876_lfp>
## Removing vector <r_lfp_30876_lfp2>
## Removing vector <r_lfp_30876_out>
## Removing vector <r_lfp_30876_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=493301.576661344,2049367.04425078 output=LfpNetwork_lfp_tmp_cumayasa_stream_1344
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1344@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493301.576661344,2049367.04425078...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30935_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30935_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30935_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30935_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30935_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30935_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30935_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30935_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30935_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30935_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30935_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30935_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30935_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30935_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1344@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30935_flds>
## Removing raster <r_lfp_30935_heads>
## Removing raster <r_lfp_30935_out>
## Removing vector <r_lfp_30935_heads>
## Removing vector <r_lfp_30935_lfp>
## Removing vector <r_lfp_30935_lfp2>
## Removing vector <r_lfp_30935_out>
## Removing vector <r_lfp_30935_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1344@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493301.576661344,2049367.04425078...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30935_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30935_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30935_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30935_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30935_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30935_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30935_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30935_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30935_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30935_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30935_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30935_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30935_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30935_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1344@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30935_flds>
## Removing raster <r_lfp_30935_heads>
## Removing raster <r_lfp_30935_out>
## Removing vector <r_lfp_30935_heads>
## Removing vector <r_lfp_30935_lfp>
## Removing vector <r_lfp_30935_lfp2>
## Removing vector <r_lfp_30935_out>
## Removing vector <r_lfp_30935_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495037.709260833,2051377.96042716 output=LfpNetwork_lfp_tmp_cumayasa_stream_1353
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1353@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495037.709260833,2051377.96042716...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30989_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30989_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30989_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30989_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30989_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30989_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30989_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30989_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30989_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30989_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30989_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30989_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30989_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30989_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1353@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30989_flds>
## Removing raster <r_lfp_30989_heads>
## Removing raster <r_lfp_30989_out>
## Removing vector <r_lfp_30989_heads>
## Removing vector <r_lfp_30989_lfp>
## Removing vector <r_lfp_30989_lfp2>
## Removing vector <r_lfp_30989_out>
## Removing vector <r_lfp_30989_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1353@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495037.709260833,2051377.96042716...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_30989_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_30989_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_30989_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30989_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_30989_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_30989_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_30989_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30989_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_30989_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_30989_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30989_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_30989_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_30989_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_30989_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1353@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_30989_flds>
## Removing raster <r_lfp_30989_heads>
## Removing raster <r_lfp_30989_out>
## Removing vector <r_lfp_30989_heads>
## Removing vector <r_lfp_30989_lfp>
## Removing vector <r_lfp_30989_lfp2>
## Removing vector <r_lfp_30989_out>
## Removing vector <r_lfp_30989_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495387.433813247,2051402.94075233 output=LfpNetwork_lfp_tmp_cumayasa_stream_1359
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1359@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495387.433813247,2051402.94075233...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31054_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31054_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31054_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31054_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31054_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31054_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31054_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31054_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31054_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31054_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31054_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31054_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31054_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31054_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1359@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31054_flds>
## Removing raster <r_lfp_31054_heads>
## Removing raster <r_lfp_31054_out>
## Removing vector <r_lfp_31054_heads>
## Removing vector <r_lfp_31054_lfp>
## Removing vector <r_lfp_31054_lfp2>
## Removing vector <r_lfp_31054_out>
## Removing vector <r_lfp_31054_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1359@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495387.433813247,2051402.94075233...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31054_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31054_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31054_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31054_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31054_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31054_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31054_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31054_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31054_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31054_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31054_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31054_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31054_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31054_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1359@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31054_flds>
## Removing raster <r_lfp_31054_heads>
## Removing raster <r_lfp_31054_out>
## Removing vector <r_lfp_31054_heads>
## Removing vector <r_lfp_31054_lfp>
## Removing vector <r_lfp_31054_lfp2>
## Removing vector <r_lfp_31054_out>
## Removing vector <r_lfp_31054_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=496174.314056181,2053226.50448993 output=LfpNetwork_lfp_tmp_cumayasa_stream_1371
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1371@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496174.314056181,2053226.50448993...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31112_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31112_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31112_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31112_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31112_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31112_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31112_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31112_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31112_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31112_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31112_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31112_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31112_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31112_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1371@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31112_flds>
## Removing raster <r_lfp_31112_heads>
## Removing raster <r_lfp_31112_out>
## Removing vector <r_lfp_31112_heads>
## Removing vector <r_lfp_31112_lfp>
## Removing vector <r_lfp_31112_lfp2>
## Removing vector <r_lfp_31112_out>
## Removing vector <r_lfp_31112_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1371@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496174.314056181,2053226.50448993...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31112_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31112_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31112_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31112_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31112_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31112_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31112_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31112_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31112_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31112_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31112_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31112_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31112_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31112_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1371@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31112_flds>
## Removing raster <r_lfp_31112_heads>
## Removing raster <r_lfp_31112_out>
## Removing vector <r_lfp_31112_heads>
## Removing vector <r_lfp_31112_lfp>
## Removing vector <r_lfp_31112_lfp2>
## Removing vector <r_lfp_31112_out>
## Removing vector <r_lfp_31112_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=499171.95307688,2055562.16489355 output=LfpNetwork_lfp_tmp_cumayasa_stream_1377
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499171.95307688,2055562.16489355...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31166_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31166_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31166_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31166_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31166_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31166_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31166_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 3 of 3 features selected from vector map <r_lfp_31166_path@PERMANENT>
## 3 lines broken
## Building topology for vector map <r_lfp_31166_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 33% 66% 100%
## Processing areas...
## 100%
## Writing selected features...
## 16% 33% 50% 66% 83% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31166_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 3 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31166_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## WARNING: Vector map <r_lfp_31166_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31166_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## Selecting features...
## 3 of 3 features selected from vector map <r_lfp_31166_lfp@PERMANENT>
## 3 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31166_flds>
## Removing raster <r_lfp_31166_heads>
## Removing raster <r_lfp_31166_out>
## Removing vector <r_lfp_31166_heads>
## Removing vector <r_lfp_31166_lfp>
## Removing vector <r_lfp_31166_lfp2>
## Removing vector <r_lfp_31166_out>
## Removing vector <r_lfp_31166_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 499171.95307688,2055562.16489355...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31166_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31166_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31166_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31166_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31166_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31166_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31166_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 3 of 3 features selected from vector map <r_lfp_31166_path@PERMANENT>
## 3 lines broken
## Building topology for vector map <r_lfp_31166_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 33% 66% 100%
## Processing areas...
## 100%
## Writing selected features...
## 16% 33% 50% 66% 83% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31166_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 3 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31166_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## WARNING: Vector map <r_lfp_31166_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31166_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## Selecting features...
## 3 of 3 features selected from vector map <r_lfp_31166_lfp@PERMANENT>
## 3 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31166_flds>
## Removing raster <r_lfp_31166_heads>
## Removing raster <r_lfp_31166_out>
## Removing vector <r_lfp_31166_heads>
## Removing vector <r_lfp_31166_lfp>
## Removing vector <r_lfp_31166_lfp2>
## Removing vector <r_lfp_31166_out>
## Removing vector <r_lfp_31166_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_1377 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1377> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1377> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1377 output=LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 33% 66% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 33% 66% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1377>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495999.451779974,2053164.05367699 output=LfpNetwork_lfp_tmp_cumayasa_stream_1380
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495999.451779974,2053164.05367699...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31238_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31238_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31238_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31238_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31238_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31238_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31238_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31238_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_31238_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31238_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31238_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_31238_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31238_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31238_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31238_flds>
## Removing raster <r_lfp_31238_heads>
## Removing raster <r_lfp_31238_out>
## Removing vector <r_lfp_31238_heads>
## Removing vector <r_lfp_31238_lfp>
## Removing vector <r_lfp_31238_lfp2>
## Removing vector <r_lfp_31238_out>
## Removing vector <r_lfp_31238_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495999.451779974,2053164.05367699...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31238_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31238_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31238_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31238_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31238_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31238_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31238_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31238_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_31238_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31238_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31238_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_31238_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31238_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31238_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31238_flds>
## Removing raster <r_lfp_31238_heads>
## Removing raster <r_lfp_31238_out>
## Removing vector <r_lfp_31238_heads>
## Removing vector <r_lfp_31238_lfp>
## Removing vector <r_lfp_31238_lfp2>
## Removing vector <r_lfp_31238_out>
## Removing vector <r_lfp_31238_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_1380 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1380> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1380> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1380 output=LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1380>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498972.1104755,2054950.14692683 output=LfpNetwork_lfp_tmp_cumayasa_stream_1393
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1393@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498972.1104755,2054950.14692683...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31319_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31319_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31319_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31319_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31319_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31319_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31319_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31319_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31319_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31319_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31319_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31319_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31319_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31319_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1393@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31319_flds>
## Removing raster <r_lfp_31319_heads>
## Removing raster <r_lfp_31319_out>
## Removing vector <r_lfp_31319_heads>
## Removing vector <r_lfp_31319_lfp>
## Removing vector <r_lfp_31319_lfp2>
## Removing vector <r_lfp_31319_out>
## Removing vector <r_lfp_31319_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1393@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498972.1104755,2054950.14692683...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31319_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31319_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31319_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31319_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31319_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31319_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31319_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31319_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31319_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31319_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31319_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31319_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31319_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31319_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1393@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31319_flds>
## Removing raster <r_lfp_31319_heads>
## Removing raster <r_lfp_31319_out>
## Removing vector <r_lfp_31319_heads>
## Removing vector <r_lfp_31319_lfp>
## Removing vector <r_lfp_31319_lfp2>
## Removing vector <r_lfp_31319_out>
## Removing vector <r_lfp_31319_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=493526.399587897,2049429.49506371 output=LfpNetwork_lfp_tmp_cumayasa_stream_1479
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1479@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493526.399587897,2049429.49506371...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31383_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31383_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31383_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31383_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31383_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31383_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31383_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31383_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31383_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31383_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31383_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31383_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31383_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31383_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1479@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31383_flds>
## Removing raster <r_lfp_31383_heads>
## Removing raster <r_lfp_31383_out>
## Removing vector <r_lfp_31383_heads>
## Removing vector <r_lfp_31383_lfp>
## Removing vector <r_lfp_31383_lfp2>
## Removing vector <r_lfp_31383_out>
## Removing vector <r_lfp_31383_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1479@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493526.399587897,2049429.49506371...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31383_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31383_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31383_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31383_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31383_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31383_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31383_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31383_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31383_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31383_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31383_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31383_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31383_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31383_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1479@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31383_flds>
## Removing raster <r_lfp_31383_heads>
## Removing raster <r_lfp_31383_out>
## Removing vector <r_lfp_31383_heads>
## Removing vector <r_lfp_31383_lfp>
## Removing vector <r_lfp_31383_lfp2>
## Removing vector <r_lfp_31383_out>
## Removing vector <r_lfp_31383_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498659.856410844,2054662.87318734 output=LfpNetwork_lfp_tmp_cumayasa_stream_1523
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498659.856410844,2054662.87318734...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31437_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31437_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31437_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31437_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31437_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31437_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31437_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31437_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_31437_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31437_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31437_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_31437_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31437_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31437_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31437_flds>
## Removing raster <r_lfp_31437_heads>
## Removing raster <r_lfp_31437_out>
## Removing vector <r_lfp_31437_heads>
## Removing vector <r_lfp_31437_lfp>
## Removing vector <r_lfp_31437_lfp2>
## Removing vector <r_lfp_31437_out>
## Removing vector <r_lfp_31437_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498659.856410844,2054662.87318734...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31437_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31437_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31437_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31437_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31437_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31437_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31437_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31437_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_31437_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31437_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31437_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_31437_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31437_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31437_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31437_flds>
## Removing raster <r_lfp_31437_heads>
## Removing raster <r_lfp_31437_out>
## Removing vector <r_lfp_31437_heads>
## Removing vector <r_lfp_31437_lfp>
## Removing vector <r_lfp_31437_lfp2>
## Removing vector <r_lfp_31437_out>
## Removing vector <r_lfp_31437_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_1523 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1523> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1523> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1523 output=LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1523>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=497673.133566531,2054088.32570838 output=LfpNetwork_lfp_tmp_cumayasa_stream_1528
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1528@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497673.133566531,2054088.32570838...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31514_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31514_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31514_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31514_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31514_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31514_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31514_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31514_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31514_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31514_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31514_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31514_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31514_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31514_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1528@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31514_flds>
## Removing raster <r_lfp_31514_heads>
## Removing raster <r_lfp_31514_out>
## Removing vector <r_lfp_31514_heads>
## Removing vector <r_lfp_31514_lfp>
## Removing vector <r_lfp_31514_lfp2>
## Removing vector <r_lfp_31514_out>
## Removing vector <r_lfp_31514_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1528@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497673.133566531,2054088.32570838...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31514_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31514_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31514_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31514_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31514_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31514_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31514_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31514_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31514_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31514_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31514_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31514_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31514_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31514_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1528@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31514_flds>
## Removing raster <r_lfp_31514_heads>
## Removing raster <r_lfp_31514_out>
## Removing vector <r_lfp_31514_heads>
## Removing vector <r_lfp_31514_lfp>
## Removing vector <r_lfp_31514_lfp2>
## Removing vector <r_lfp_31514_out>
## Removing vector <r_lfp_31514_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498634.876085672,2054687.85351252 output=LfpNetwork_lfp_tmp_cumayasa_stream_1599
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498634.876085672,2054687.85351252...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31578_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31578_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31578_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31578_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31578_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31578_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31578_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31578_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_31578_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31578_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31578_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_31578_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31578_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31578_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31578_flds>
## Removing raster <r_lfp_31578_heads>
## Removing raster <r_lfp_31578_out>
## Removing vector <r_lfp_31578_heads>
## Removing vector <r_lfp_31578_lfp>
## Removing vector <r_lfp_31578_lfp2>
## Removing vector <r_lfp_31578_out>
## Removing vector <r_lfp_31578_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498634.876085672,2054687.85351252...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31578_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31578_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31578_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31578_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31578_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31578_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31578_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31578_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_31578_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31578_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31578_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_31578_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31578_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_31578_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31578_flds>
## Removing raster <r_lfp_31578_heads>
## Removing raster <r_lfp_31578_out>
## Removing vector <r_lfp_31578_heads>
## Removing vector <r_lfp_31578_lfp>
## Removing vector <r_lfp_31578_lfp2>
## Removing vector <r_lfp_31578_out>
## Removing vector <r_lfp_31578_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_1599 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1599> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1599> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1599 output=LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1599>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491727.816175477,2048755.02628405 output=LfpNetwork_lfp_tmp_cumayasa_stream_1602
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1602@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491727.816175477,2048755.02628405...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31657_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31657_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31657_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31657_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31657_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31657_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31657_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31657_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31657_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31657_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31657_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31657_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31657_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31657_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1602@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31657_flds>
## Removing raster <r_lfp_31657_heads>
## Removing raster <r_lfp_31657_out>
## Removing vector <r_lfp_31657_heads>
## Removing vector <r_lfp_31657_lfp>
## Removing vector <r_lfp_31657_lfp2>
## Removing vector <r_lfp_31657_out>
## Removing vector <r_lfp_31657_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1602@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491727.816175477,2048755.02628405...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31657_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31657_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31657_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31657_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31657_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31657_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31657_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31657_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31657_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31657_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31657_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31657_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31657_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31657_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1602@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31657_flds>
## Removing raster <r_lfp_31657_heads>
## Removing raster <r_lfp_31657_out>
## Removing vector <r_lfp_31657_heads>
## Removing vector <r_lfp_31657_lfp>
## Removing vector <r_lfp_31657_lfp2>
## Removing vector <r_lfp_31657_out>
## Removing vector <r_lfp_31657_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495175.101049281,2051440.41124009 output=LfpNetwork_lfp_tmp_cumayasa_stream_1614
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1614@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495175.101049281,2051440.41124009...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31716_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31716_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31716_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31716_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31716_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31716_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31716_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31716_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31716_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31716_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31716_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31716_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31716_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31716_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1614@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31716_flds>
## Removing raster <r_lfp_31716_heads>
## Removing raster <r_lfp_31716_out>
## Removing vector <r_lfp_31716_heads>
## Removing vector <r_lfp_31716_lfp>
## Removing vector <r_lfp_31716_lfp2>
## Removing vector <r_lfp_31716_out>
## Removing vector <r_lfp_31716_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1614@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495175.101049281,2051440.41124009...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31716_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31716_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31716_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31716_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31716_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31716_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31716_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31716_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31716_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31716_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31716_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31716_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31716_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31716_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1614@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31716_flds>
## Removing raster <r_lfp_31716_heads>
## Removing raster <r_lfp_31716_out>
## Removing vector <r_lfp_31716_heads>
## Removing vector <r_lfp_31716_lfp>
## Removing vector <r_lfp_31716_lfp2>
## Removing vector <r_lfp_31716_out>
## Removing vector <r_lfp_31716_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498447.523646878,2054100.81587096 output=LfpNetwork_lfp_tmp_cumayasa_stream_1682
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1682@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498447.523646878,2054100.81587096...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31772_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31772_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31772_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31772_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31772_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31772_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31772_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31772_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31772_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31772_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31772_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31772_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31772_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31772_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1682@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31772_flds>
## Removing raster <r_lfp_31772_heads>
## Removing raster <r_lfp_31772_out>
## Removing vector <r_lfp_31772_heads>
## Removing vector <r_lfp_31772_lfp>
## Removing vector <r_lfp_31772_lfp2>
## Removing vector <r_lfp_31772_out>
## Removing vector <r_lfp_31772_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1682@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498447.523646878,2054100.81587096...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31772_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31772_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31772_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31772_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31772_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31772_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31772_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31772_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31772_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31772_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31772_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31772_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31772_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31772_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1682@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31772_flds>
## Removing raster <r_lfp_31772_heads>
## Removing raster <r_lfp_31772_out>
## Removing vector <r_lfp_31772_heads>
## Removing vector <r_lfp_31772_lfp>
## Removing vector <r_lfp_31772_lfp2>
## Removing vector <r_lfp_31772_out>
## Removing vector <r_lfp_31772_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498335.112183602,2054013.38473286 output=LfpNetwork_lfp_tmp_cumayasa_stream_1689
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1689@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498335.112183602,2054013.38473286...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31832_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31832_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31832_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31832_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31832_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31832_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31832_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31832_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31832_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31832_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31832_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31832_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31832_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31832_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1689@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31832_flds>
## Removing raster <r_lfp_31832_heads>
## Removing raster <r_lfp_31832_out>
## Removing vector <r_lfp_31832_heads>
## Removing vector <r_lfp_31832_lfp>
## Removing vector <r_lfp_31832_lfp2>
## Removing vector <r_lfp_31832_out>
## Removing vector <r_lfp_31832_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1689@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498335.112183602,2054013.38473286...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31832_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31832_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31832_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31832_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31832_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31832_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31832_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31832_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31832_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31832_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31832_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31832_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31832_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31832_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1689@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31832_flds>
## Removing raster <r_lfp_31832_heads>
## Removing raster <r_lfp_31832_out>
## Removing vector <r_lfp_31832_heads>
## Removing vector <r_lfp_31832_lfp>
## Removing vector <r_lfp_31832_lfp2>
## Removing vector <r_lfp_31832_out>
## Removing vector <r_lfp_31832_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=497860.486005324,2054075.83554579 output=LfpNetwork_lfp_tmp_cumayasa_stream_1701
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1701@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497860.486005324,2054075.83554579...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31888_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31888_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31888_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31888_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31888_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31888_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31888_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31888_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31888_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31888_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31888_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31888_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31888_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31888_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1701@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31888_flds>
## Removing raster <r_lfp_31888_heads>
## Removing raster <r_lfp_31888_out>
## Removing vector <r_lfp_31888_heads>
## Removing vector <r_lfp_31888_lfp>
## Removing vector <r_lfp_31888_lfp2>
## Removing vector <r_lfp_31888_out>
## Removing vector <r_lfp_31888_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1701@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497860.486005324,2054075.83554579...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31888_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31888_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31888_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31888_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31888_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31888_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31888_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31888_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31888_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31888_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31888_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31888_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31888_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31888_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1701@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31888_flds>
## Removing raster <r_lfp_31888_heads>
## Removing raster <r_lfp_31888_out>
## Removing vector <r_lfp_31888_heads>
## Removing vector <r_lfp_31888_lfp>
## Removing vector <r_lfp_31888_lfp2>
## Removing vector <r_lfp_31888_out>
## Removing vector <r_lfp_31888_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=493676.281538932,2049716.76880319 output=LfpNetwork_lfp_tmp_cumayasa_stream_1712
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1712@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493676.281538932,2049716.76880319...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31942_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31942_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31942_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31942_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31942_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31942_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31942_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31942_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31942_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31942_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31942_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31942_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31942_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31942_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1712@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31942_flds>
## Removing raster <r_lfp_31942_heads>
## Removing raster <r_lfp_31942_out>
## Removing vector <r_lfp_31942_heads>
## Removing vector <r_lfp_31942_lfp>
## Removing vector <r_lfp_31942_lfp2>
## Removing vector <r_lfp_31942_out>
## Removing vector <r_lfp_31942_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1712@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493676.281538932,2049716.76880319...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31942_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31942_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31942_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31942_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31942_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31942_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31942_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31942_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31942_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31942_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31942_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31942_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31942_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31942_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1712@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31942_flds>
## Removing raster <r_lfp_31942_heads>
## Removing raster <r_lfp_31942_out>
## Removing vector <r_lfp_31942_heads>
## Removing vector <r_lfp_31942_lfp>
## Removing vector <r_lfp_31942_lfp2>
## Removing vector <r_lfp_31942_out>
## Removing vector <r_lfp_31942_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498072.818769291,2053950.93391993 output=LfpNetwork_lfp_tmp_cumayasa_stream_1764
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1764@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498072.818769291,2053950.93391993...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31996_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31996_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31996_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31996_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31996_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31996_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31996_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31996_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31996_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31996_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31996_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31996_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31996_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31996_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1764@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31996_flds>
## Removing raster <r_lfp_31996_heads>
## Removing raster <r_lfp_31996_out>
## Removing vector <r_lfp_31996_heads>
## Removing vector <r_lfp_31996_lfp>
## Removing vector <r_lfp_31996_lfp2>
## Removing vector <r_lfp_31996_out>
## Removing vector <r_lfp_31996_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1764@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498072.818769291,2053950.93391993...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_31996_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_31996_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_31996_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31996_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_31996_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_31996_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_31996_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31996_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_31996_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_31996_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31996_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_31996_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_31996_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_31996_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1764@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_31996_flds>
## Removing raster <r_lfp_31996_heads>
## Removing raster <r_lfp_31996_out>
## Removing vector <r_lfp_31996_heads>
## Removing vector <r_lfp_31996_lfp>
## Removing vector <r_lfp_31996_lfp2>
## Removing vector <r_lfp_31996_out>
## Removing vector <r_lfp_31996_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489342.195121504,2045807.34791369 output=LfpNetwork_lfp_tmp_cumayasa_stream_1775
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1775@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489342.195121504,2045807.34791369...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32052_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32052_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32052_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32052_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32052_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32052_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32052_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32052_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32052_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32052_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32052_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32052_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32052_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32052_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1775@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32052_flds>
## Removing raster <r_lfp_32052_heads>
## Removing raster <r_lfp_32052_out>
## Removing vector <r_lfp_32052_heads>
## Removing vector <r_lfp_32052_lfp>
## Removing vector <r_lfp_32052_lfp2>
## Removing vector <r_lfp_32052_out>
## Removing vector <r_lfp_32052_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1775@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489342.195121504,2045807.34791369...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32052_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32052_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32052_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32052_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32052_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32052_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32052_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32052_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32052_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32052_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32052_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32052_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32052_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32052_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1775@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32052_flds>
## Removing raster <r_lfp_32052_heads>
## Removing raster <r_lfp_32052_out>
## Removing vector <r_lfp_32052_heads>
## Removing vector <r_lfp_32052_lfp>
## Removing vector <r_lfp_32052_lfp2>
## Removing vector <r_lfp_32052_out>
## Removing vector <r_lfp_32052_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=497273.448363771,2053763.58148113 output=LfpNetwork_lfp_tmp_cumayasa_stream_1779
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1779@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497273.448363771,2053763.58148113...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32106_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32106_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32106_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32106_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32106_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32106_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32106_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32106_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32106_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32106_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32106_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32106_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32106_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32106_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1779@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32106_flds>
## Removing raster <r_lfp_32106_heads>
## Removing raster <r_lfp_32106_out>
## Removing vector <r_lfp_32106_heads>
## Removing vector <r_lfp_32106_lfp>
## Removing vector <r_lfp_32106_lfp2>
## Removing vector <r_lfp_32106_out>
## Removing vector <r_lfp_32106_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1779@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497273.448363771,2053763.58148113...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32106_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32106_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32106_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32106_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32106_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32106_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32106_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32106_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32106_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32106_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32106_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32106_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32106_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32106_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1779@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32106_flds>
## Removing raster <r_lfp_32106_heads>
## Removing raster <r_lfp_32106_out>
## Removing vector <r_lfp_32106_heads>
## Removing vector <r_lfp_32106_lfp>
## Removing vector <r_lfp_32106_lfp2>
## Removing vector <r_lfp_32106_out>
## Removing vector <r_lfp_32106_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=498447.523646878,2054313.14863493 output=LfpNetwork_lfp_tmp_cumayasa_stream_1785
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1785@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498447.523646878,2054313.14863493...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32160_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32160_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32160_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32160_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32160_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32160_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32160_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32160_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32160_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32160_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32160_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32160_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32160_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32160_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1785@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32160_flds>
## Removing raster <r_lfp_32160_heads>
## Removing raster <r_lfp_32160_out>
## Removing vector <r_lfp_32160_heads>
## Removing vector <r_lfp_32160_lfp>
## Removing vector <r_lfp_32160_lfp2>
## Removing vector <r_lfp_32160_out>
## Removing vector <r_lfp_32160_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1785@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 498447.523646878,2054313.14863493...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32160_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32160_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32160_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32160_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32160_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32160_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32160_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32160_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32160_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32160_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32160_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32160_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32160_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32160_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1785@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32160_flds>
## Removing raster <r_lfp_32160_heads>
## Removing raster <r_lfp_32160_out>
## Removing vector <r_lfp_32160_heads>
## Removing vector <r_lfp_32160_lfp>
## Removing vector <r_lfp_32160_lfp2>
## Removing vector <r_lfp_32160_out>
## Removing vector <r_lfp_32160_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490328.917965817,2047093.83466008 output=LfpNetwork_lfp_tmp_cumayasa_stream_1810
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1810@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490328.917965817,2047093.83466008...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32214_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32214_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32214_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32214_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32214_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32214_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32214_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32214_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32214_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32214_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32214_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32214_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32214_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32214_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1810@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32214_flds>
## Removing raster <r_lfp_32214_heads>
## Removing raster <r_lfp_32214_out>
## Removing vector <r_lfp_32214_heads>
## Removing vector <r_lfp_32214_lfp>
## Removing vector <r_lfp_32214_lfp2>
## Removing vector <r_lfp_32214_out>
## Removing vector <r_lfp_32214_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1810@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490328.917965817,2047093.83466008...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32214_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32214_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32214_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32214_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32214_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32214_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32214_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32214_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32214_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32214_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32214_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32214_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32214_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32214_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1810@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32214_flds>
## Removing raster <r_lfp_32214_heads>
## Removing raster <r_lfp_32214_out>
## Removing vector <r_lfp_32214_heads>
## Removing vector <r_lfp_32214_lfp>
## Removing vector <r_lfp_32214_lfp2>
## Removing vector <r_lfp_32214_out>
## Removing vector <r_lfp_32214_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487743.454310464,2042210.18108886 output=LfpNetwork_lfp_tmp_cumayasa_stream_1819
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1819@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487743.454310464,2042210.18108886...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32272_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32272_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32272_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32272_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32272_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32272_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32272_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32272_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32272_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32272_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32272_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32272_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32272_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32272_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1819@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32272_flds>
## Removing raster <r_lfp_32272_heads>
## Removing raster <r_lfp_32272_out>
## Removing vector <r_lfp_32272_heads>
## Removing vector <r_lfp_32272_lfp>
## Removing vector <r_lfp_32272_lfp2>
## Removing vector <r_lfp_32272_out>
## Removing vector <r_lfp_32272_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1819@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487743.454310464,2042210.18108886...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32272_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32272_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32272_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32272_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32272_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32272_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32272_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32272_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32272_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32272_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32272_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32272_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32272_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32272_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1819@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32272_flds>
## Removing raster <r_lfp_32272_heads>
## Removing raster <r_lfp_32272_out>
## Removing vector <r_lfp_32272_heads>
## Removing vector <r_lfp_32272_lfp>
## Removing vector <r_lfp_32272_lfp2>
## Removing vector <r_lfp_32272_out>
## Removing vector <r_lfp_32272_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491577.934224442,2048717.55579629 output=LfpNetwork_lfp_tmp_cumayasa_stream_1820
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1820@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491577.934224442,2048717.55579629...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32328_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32328_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32328_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32328_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32328_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32328_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32328_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32328_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32328_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32328_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32328_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32328_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32328_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32328_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1820@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32328_flds>
## Removing raster <r_lfp_32328_heads>
## Removing raster <r_lfp_32328_out>
## Removing vector <r_lfp_32328_heads>
## Removing vector <r_lfp_32328_lfp>
## Removing vector <r_lfp_32328_lfp2>
## Removing vector <r_lfp_32328_out>
## Removing vector <r_lfp_32328_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1820@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491577.934224442,2048717.55579629...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32328_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32328_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32328_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32328_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32328_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32328_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32328_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32328_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32328_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32328_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32328_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32328_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32328_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32328_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1820@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32328_flds>
## Removing raster <r_lfp_32328_heads>
## Removing raster <r_lfp_32328_out>
## Removing vector <r_lfp_32328_heads>
## Removing vector <r_lfp_32328_lfp>
## Removing vector <r_lfp_32328_lfp2>
## Removing vector <r_lfp_32328_out>
## Removing vector <r_lfp_32328_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=497223.487713426,2053788.56180631 output=LfpNetwork_lfp_tmp_cumayasa_stream_1863
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497223.487713426,2053788.56180631...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32388_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32388_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32388_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32388_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32388_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32388_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32388_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_32388_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_32388_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32388_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32388_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_32388_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32388_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_32388_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32388_flds>
## Removing raster <r_lfp_32388_heads>
## Removing raster <r_lfp_32388_out>
## Removing vector <r_lfp_32388_heads>
## Removing vector <r_lfp_32388_lfp>
## Removing vector <r_lfp_32388_lfp2>
## Removing vector <r_lfp_32388_out>
## Removing vector <r_lfp_32388_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497223.487713426,2053788.56180631...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32388_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32388_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32388_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32388_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32388_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32388_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32388_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_32388_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_32388_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32388_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32388_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_32388_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32388_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_32388_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32388_flds>
## Removing raster <r_lfp_32388_heads>
## Removing raster <r_lfp_32388_out>
## Removing vector <r_lfp_32388_heads>
## Removing vector <r_lfp_32388_lfp>
## Removing vector <r_lfp_32388_lfp2>
## Removing vector <r_lfp_32388_out>
## Removing vector <r_lfp_32388_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_1863 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1863> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1863> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1863 output=LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1863>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489017.450894261,2040661.40092816 output=LfpNetwork_lfp_tmp_cumayasa_stream_1871
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1871@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489017.450894261,2040661.40092816...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32458_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32458_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32458_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32458_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32458_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32458_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32458_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32458_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32458_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32458_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32458_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32458_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32458_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32458_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1871@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32458_flds>
## Removing raster <r_lfp_32458_heads>
## Removing raster <r_lfp_32458_out>
## Removing vector <r_lfp_32458_heads>
## Removing vector <r_lfp_32458_lfp>
## Removing vector <r_lfp_32458_lfp2>
## Removing vector <r_lfp_32458_out>
## Removing vector <r_lfp_32458_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1871@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489017.450894261,2040661.40092816...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32458_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32458_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32458_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32458_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32458_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32458_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32458_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32458_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32458_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32458_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32458_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32458_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32458_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32458_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1871@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32458_flds>
## Removing raster <r_lfp_32458_heads>
## Removing raster <r_lfp_32458_out>
## Removing vector <r_lfp_32458_heads>
## Removing vector <r_lfp_32458_lfp>
## Removing vector <r_lfp_32458_lfp2>
## Removing vector <r_lfp_32458_out>
## Removing vector <r_lfp_32458_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488005.747724775,2042210.18108886 output=LfpNetwork_lfp_tmp_cumayasa_stream_1903
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1903@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488005.747724775,2042210.18108886...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32515_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32515_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32515_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32515_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32515_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32515_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32515_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32515_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32515_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32515_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32515_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32515_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32515_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32515_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1903@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32515_flds>
## Removing raster <r_lfp_32515_heads>
## Removing raster <r_lfp_32515_out>
## Removing vector <r_lfp_32515_heads>
## Removing vector <r_lfp_32515_lfp>
## Removing vector <r_lfp_32515_lfp2>
## Removing vector <r_lfp_32515_out>
## Removing vector <r_lfp_32515_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1903@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488005.747724775,2042210.18108886...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32515_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32515_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32515_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32515_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32515_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32515_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32515_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32515_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32515_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32515_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32515_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32515_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32515_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32515_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1903@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32515_flds>
## Removing raster <r_lfp_32515_heads>
## Removing raster <r_lfp_32515_out>
## Removing vector <r_lfp_32515_heads>
## Removing vector <r_lfp_32515_lfp>
## Removing vector <r_lfp_32515_lfp2>
## Removing vector <r_lfp_32515_out>
## Removing vector <r_lfp_32515_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489966.703250816,2039537.2862954 output=LfpNetwork_lfp_tmp_cumayasa_stream_1935
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1935@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489966.703250816,2039537.2862954...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32571_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32571_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32571_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32571_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32571_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32571_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32571_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32571_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32571_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32571_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32571_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32571_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32571_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32571_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1935@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32571_flds>
## Removing raster <r_lfp_32571_heads>
## Removing raster <r_lfp_32571_out>
## Removing vector <r_lfp_32571_heads>
## Removing vector <r_lfp_32571_lfp>
## Removing vector <r_lfp_32571_lfp2>
## Removing vector <r_lfp_32571_out>
## Removing vector <r_lfp_32571_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1935@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489966.703250816,2039537.2862954...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32571_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32571_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32571_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32571_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32571_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32571_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32571_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32571_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32571_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32571_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32571_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32571_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32571_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32571_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1935@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32571_flds>
## Removing raster <r_lfp_32571_heads>
## Removing raster <r_lfp_32571_out>
## Removing vector <r_lfp_32571_heads>
## Removing vector <r_lfp_32571_lfp>
## Removing vector <r_lfp_32571_lfp2>
## Removing vector <r_lfp_32571_out>
## Removing vector <r_lfp_32571_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=497823.015517566,2054050.85522062 output=LfpNetwork_lfp_tmp_cumayasa_stream_1961
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1961@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497823.015517566,2054050.85522062...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32627_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32627_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32627_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32627_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32627_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32627_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32627_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32627_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32627_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32627_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32627_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32627_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32627_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32627_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1961@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32627_flds>
## Removing raster <r_lfp_32627_heads>
## Removing raster <r_lfp_32627_out>
## Removing vector <r_lfp_32627_heads>
## Removing vector <r_lfp_32627_lfp>
## Removing vector <r_lfp_32627_lfp2>
## Removing vector <r_lfp_32627_out>
## Removing vector <r_lfp_32627_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1961@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 497823.015517566,2054050.85522062...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32627_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32627_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32627_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32627_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32627_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32627_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32627_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32627_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32627_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32627_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32627_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32627_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32627_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32627_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1961@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32627_flds>
## Removing raster <r_lfp_32627_heads>
## Removing raster <r_lfp_32627_out>
## Removing vector <r_lfp_32627_heads>
## Removing vector <r_lfp_32627_lfp>
## Removing vector <r_lfp_32627_lfp2>
## Removing vector <r_lfp_32627_out>
## Removing vector <r_lfp_32627_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495649.727227559,2052339.7029463 output=LfpNetwork_lfp_tmp_cumayasa_stream_1976
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1976@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495649.727227559,2052339.7029463...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32688_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32688_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32688_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32688_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32688_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32688_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32688_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32688_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32688_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32688_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32688_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32688_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32688_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32688_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1976@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32688_flds>
## Removing raster <r_lfp_32688_heads>
## Removing raster <r_lfp_32688_out>
## Removing vector <r_lfp_32688_heads>
## Removing vector <r_lfp_32688_lfp>
## Removing vector <r_lfp_32688_lfp2>
## Removing vector <r_lfp_32688_out>
## Removing vector <r_lfp_32688_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1976@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495649.727227559,2052339.7029463...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32688_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32688_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32688_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32688_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32688_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32688_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32688_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32688_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32688_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32688_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32688_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32688_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32688_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32688_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1976@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32688_flds>
## Removing raster <r_lfp_32688_heads>
## Removing raster <r_lfp_32688_out>
## Removing vector <r_lfp_32688_heads>
## Removing vector <r_lfp_32688_lfp>
## Removing vector <r_lfp_32688_lfp2>
## Removing vector <r_lfp_32688_out>
## Removing vector <r_lfp_32688_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489504.567235125,2046057.15116542 output=LfpNetwork_lfp_tmp_cumayasa_stream_1977
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1977@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489504.567235125,2046057.15116542...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32742_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32742_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32742_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32742_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32742_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32742_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32742_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32742_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32742_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32742_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32742_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32742_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32742_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32742_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1977@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32742_flds>
## Removing raster <r_lfp_32742_heads>
## Removing raster <r_lfp_32742_out>
## Removing vector <r_lfp_32742_heads>
## Removing vector <r_lfp_32742_lfp>
## Removing vector <r_lfp_32742_lfp2>
## Removing vector <r_lfp_32742_out>
## Removing vector <r_lfp_32742_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1977@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489504.567235125,2046057.15116542...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_32742_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_32742_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_32742_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32742_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_32742_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_32742_out> already exists and will be
## overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_32742_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32742_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_32742_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_32742_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32742_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_32742_lfp> already exists and will be
## overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_32742_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_32742_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1977@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_32742_flds>
## Removing raster <r_lfp_32742_heads>
## Removing raster <r_lfp_32742_out>
## Removing vector <r_lfp_32742_heads>
## Removing vector <r_lfp_32742_lfp>
## Removing vector <r_lfp_32742_lfp2>
## Removing vector <r_lfp_32742_out>
## Removing vector <r_lfp_32742_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490915.955607371,2048417.79189422 output=LfpNetwork_lfp_tmp_cumayasa_stream_1989
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490915.955607371,2048417.79189422...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_328_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_328_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_328_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_328_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_328_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_328_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_328_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_328_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_328_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_328_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_328_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_328_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_328_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_328_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_328_flds>
## Removing raster <r_lfp_328_heads>
## Removing raster <r_lfp_328_out>
## Removing vector <r_lfp_328_heads>
## Removing vector <r_lfp_328_lfp>
## Removing vector <r_lfp_328_lfp2>
## Removing vector <r_lfp_328_out>
## Removing vector <r_lfp_328_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490915.955607371,2048417.79189422...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_328_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_328_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_328_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_328_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_328_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_328_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_328_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_328_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_328_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_328_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_328_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_328_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_328_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_328_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_328_flds>
## Removing raster <r_lfp_328_heads>
## Removing raster <r_lfp_328_out>
## Removing vector <r_lfp_328_heads>
## Removing vector <r_lfp_328_lfp>
## Removing vector <r_lfp_328_lfp2>
## Removing vector <r_lfp_328_out>
## Removing vector <r_lfp_328_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_1989 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1989> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1989> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_1989 output=LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1989>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=493214.14552324,2049329.57376302 output=LfpNetwork_lfp_tmp_cumayasa_stream_1994
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1994@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493214.14552324,2049329.57376302...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_404_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_404_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_404_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_404_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_404_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_404_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_404_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_404_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_404_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_404_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_404_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_404_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_404_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_404_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1994@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_404_flds>
## Removing raster <r_lfp_404_heads>
## Removing raster <r_lfp_404_out>
## Removing vector <r_lfp_404_heads>
## Removing vector <r_lfp_404_lfp>
## Removing vector <r_lfp_404_lfp2>
## Removing vector <r_lfp_404_out>
## Removing vector <r_lfp_404_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1994@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493214.14552324,2049329.57376302...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_404_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_404_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_404_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_404_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_404_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_404_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_404_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_404_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_404_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_404_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_404_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_404_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_404_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_404_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1994@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_404_flds>
## Removing raster <r_lfp_404_heads>
## Removing raster <r_lfp_404_out>
## Removing vector <r_lfp_404_heads>
## Removing vector <r_lfp_404_lfp>
## Removing vector <r_lfp_404_lfp2>
## Removing vector <r_lfp_404_out>
## Removing vector <r_lfp_404_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488717.686992191,2041023.61564316 output=LfpNetwork_lfp_tmp_cumayasa_stream_2028
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2028@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488717.686992191,2041023.61564316...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_470_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_470_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_470_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_470_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_470_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_470_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_470_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_470_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_470_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_470_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_470_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_470_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_470_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_470_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2028@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_470_flds>
## Removing raster <r_lfp_470_heads>
## Removing raster <r_lfp_470_out>
## Removing vector <r_lfp_470_heads>
## Removing vector <r_lfp_470_lfp>
## Removing vector <r_lfp_470_lfp2>
## Removing vector <r_lfp_470_out>
## Removing vector <r_lfp_470_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2028@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488717.686992191,2041023.61564316...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_470_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_470_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_470_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_470_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_470_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_470_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_470_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_470_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_470_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_470_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_470_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_470_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_470_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_470_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2028@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_470_flds>
## Removing raster <r_lfp_470_heads>
## Removing raster <r_lfp_470_out>
## Removing vector <r_lfp_470_heads>
## Removing vector <r_lfp_470_lfp>
## Removing vector <r_lfp_470_lfp2>
## Removing vector <r_lfp_470_out>
## Removing vector <r_lfp_470_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=494400.710968934,2049966.57205492 output=LfpNetwork_lfp_tmp_cumayasa_stream_2040
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2040@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494400.710968934,2049966.57205492...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_528_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_528_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_528_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_528_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_528_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_528_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_528_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_528_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_528_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_528_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_528_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_528_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_528_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_528_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2040@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_528_flds>
## Removing raster <r_lfp_528_heads>
## Removing raster <r_lfp_528_out>
## Removing vector <r_lfp_528_heads>
## Removing vector <r_lfp_528_lfp>
## Removing vector <r_lfp_528_lfp2>
## Removing vector <r_lfp_528_out>
## Removing vector <r_lfp_528_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2040@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494400.710968934,2049966.57205492...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_528_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_528_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_528_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_528_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_528_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_528_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_528_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_528_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_528_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_528_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_528_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_528_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_528_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_528_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2040@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_528_flds>
## Removing raster <r_lfp_528_heads>
## Removing raster <r_lfp_528_out>
## Removing vector <r_lfp_528_heads>
## Removing vector <r_lfp_528_lfp>
## Removing vector <r_lfp_528_lfp2>
## Removing vector <r_lfp_528_out>
## Removing vector <r_lfp_528_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489841.801624954,2045982.2101899 output=LfpNetwork_lfp_tmp_cumayasa_stream_2043
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489841.801624954,2045982.2101899...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_585_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_585_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_585_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_585_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_585_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_585_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_585_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_585_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_585_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_585_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_585_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_585_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_585_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_585_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_585_flds>
## Removing raster <r_lfp_585_heads>
## Removing raster <r_lfp_585_out>
## Removing vector <r_lfp_585_heads>
## Removing vector <r_lfp_585_lfp>
## Removing vector <r_lfp_585_lfp2>
## Removing vector <r_lfp_585_out>
## Removing vector <r_lfp_585_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489841.801624954,2045982.2101899...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_585_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_585_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_585_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_585_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_585_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_585_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_585_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_585_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_585_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_585_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_585_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_585_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_585_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_585_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_585_flds>
## Removing raster <r_lfp_585_heads>
## Removing raster <r_lfp_585_out>
## Removing vector <r_lfp_585_heads>
## Removing vector <r_lfp_585_lfp>
## Removing vector <r_lfp_585_lfp2>
## Removing vector <r_lfp_585_out>
## Removing vector <r_lfp_585_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2043 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2043> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2043> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2043 output=LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2043>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=496174.314056181,2053114.09302665 output=LfpNetwork_lfp_tmp_cumayasa_stream_2066
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2066@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496174.314056181,2053114.09302665...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_660_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_660_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_660_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_660_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_660_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_660_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_660_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_660_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_660_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_660_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_660_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_660_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_660_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_660_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2066@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_660_flds>
## Removing raster <r_lfp_660_heads>
## Removing raster <r_lfp_660_out>
## Removing vector <r_lfp_660_heads>
## Removing vector <r_lfp_660_lfp>
## Removing vector <r_lfp_660_lfp2>
## Removing vector <r_lfp_660_out>
## Removing vector <r_lfp_660_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2066@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496174.314056181,2053114.09302665...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_660_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_660_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_660_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_660_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_660_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_660_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_660_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_660_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_660_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_660_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_660_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_660_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_660_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_660_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2066@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_660_flds>
## Removing raster <r_lfp_660_heads>
## Removing raster <r_lfp_660_out>
## Removing vector <r_lfp_660_heads>
## Removing vector <r_lfp_660_lfp>
## Removing vector <r_lfp_660_lfp2>
## Removing vector <r_lfp_660_out>
## Removing vector <r_lfp_660_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=494250.829017899,2049941.59172974 output=LfpNetwork_lfp_tmp_cumayasa_stream_2068
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2068@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494250.829017899,2049941.59172974...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_718_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_718_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_718_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_718_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_718_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_718_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_718_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_718_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_718_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_718_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_718_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_718_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_718_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_718_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2068@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_718_flds>
## Removing raster <r_lfp_718_heads>
## Removing raster <r_lfp_718_out>
## Removing vector <r_lfp_718_heads>
## Removing vector <r_lfp_718_lfp>
## Removing vector <r_lfp_718_lfp2>
## Removing vector <r_lfp_718_out>
## Removing vector <r_lfp_718_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2068@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494250.829017899,2049941.59172974...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_718_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_718_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_718_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_718_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_718_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_718_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_718_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_718_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_718_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_718_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_718_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_718_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_718_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_718_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2068@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_718_flds>
## Removing raster <r_lfp_718_heads>
## Removing raster <r_lfp_718_out>
## Removing vector <r_lfp_718_heads>
## Removing vector <r_lfp_718_lfp>
## Removing vector <r_lfp_718_lfp2>
## Removing vector <r_lfp_718_out>
## Removing vector <r_lfp_718_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495674.707552731,2052776.85863682 output=LfpNetwork_lfp_tmp_cumayasa_stream_2079
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2079@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495674.707552731,2052776.85863682...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_776_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_776_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_776_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_776_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_776_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_776_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_776_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_776_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_776_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_776_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_776_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_776_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_776_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_776_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2079@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_776_flds>
## Removing raster <r_lfp_776_heads>
## Removing raster <r_lfp_776_out>
## Removing vector <r_lfp_776_heads>
## Removing vector <r_lfp_776_lfp>
## Removing vector <r_lfp_776_lfp2>
## Removing vector <r_lfp_776_out>
## Removing vector <r_lfp_776_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2079@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495674.707552731,2052776.85863682...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_776_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_776_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_776_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_776_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_776_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_776_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_776_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_776_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_776_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_776_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_776_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_776_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_776_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_776_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2079@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_776_flds>
## Removing raster <r_lfp_776_heads>
## Removing raster <r_lfp_776_out>
## Removing vector <r_lfp_776_heads>
## Removing vector <r_lfp_776_lfp>
## Removing vector <r_lfp_776_lfp2>
## Removing vector <r_lfp_776_out>
## Removing vector <r_lfp_776_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495612.2567398,2052502.07505992 output=LfpNetwork_lfp_tmp_cumayasa_stream_2093
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2093@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495612.2567398,2052502.07505992...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_832_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_832_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_832_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_832_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_832_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_832_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_832_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_832_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_832_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_832_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_832_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_832_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_832_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_832_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2093@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_832_flds>
## Removing raster <r_lfp_832_heads>
## Removing raster <r_lfp_832_out>
## Removing vector <r_lfp_832_heads>
## Removing vector <r_lfp_832_lfp>
## Removing vector <r_lfp_832_lfp2>
## Removing vector <r_lfp_832_out>
## Removing vector <r_lfp_832_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2093@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495612.2567398,2052502.07505992...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_832_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_832_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_832_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_832_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_832_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_832_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_832_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_832_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_832_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_832_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_832_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_832_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_832_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_832_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2093@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_832_flds>
## Removing raster <r_lfp_832_heads>
## Removing raster <r_lfp_832_out>
## Removing vector <r_lfp_832_heads>
## Removing vector <r_lfp_832_lfp>
## Removing vector <r_lfp_832_lfp2>
## Removing vector <r_lfp_832_out>
## Removing vector <r_lfp_832_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495812.09934118,2052939.23075044 output=LfpNetwork_lfp_tmp_cumayasa_stream_2099
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2099@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495812.09934118,2052939.23075044...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_917_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_917_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_917_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_917_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_917_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_917_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_917_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_917_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_917_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_917_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_917_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_917_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_917_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_917_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2099@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_917_flds>
## Removing raster <r_lfp_917_heads>
## Removing raster <r_lfp_917_out>
## Removing vector <r_lfp_917_heads>
## Removing vector <r_lfp_917_lfp>
## Removing vector <r_lfp_917_lfp2>
## Removing vector <r_lfp_917_out>
## Removing vector <r_lfp_917_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2099@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495812.09934118,2052939.23075044...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_917_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_917_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_917_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_917_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_917_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_917_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_917_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_917_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_917_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_917_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_917_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_917_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_917_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_917_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2099@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_917_flds>
## Removing raster <r_lfp_917_heads>
## Removing raster <r_lfp_917_out>
## Removing vector <r_lfp_917_heads>
## Removing vector <r_lfp_917_lfp>
## Removing vector <r_lfp_917_lfp2>
## Removing vector <r_lfp_917_out>
## Removing vector <r_lfp_917_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490366.388453576,2047481.02970025 output=LfpNetwork_lfp_tmp_cumayasa_stream_2102
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2102@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490366.388453576,2047481.02970025...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_980_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_980_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_980_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_980_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_980_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_980_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_980_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_980_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_980_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_980_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_980_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_980_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_980_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_980_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2102@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_980_flds>
## Removing raster <r_lfp_980_heads>
## Removing raster <r_lfp_980_out>
## Removing vector <r_lfp_980_heads>
## Removing vector <r_lfp_980_lfp>
## Removing vector <r_lfp_980_lfp2>
## Removing vector <r_lfp_980_out>
## Removing vector <r_lfp_980_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2102@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490366.388453576,2047481.02970025...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_980_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_980_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_980_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_980_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_980_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_980_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_980_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_980_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_980_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_980_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_980_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_980_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_980_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_980_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2102@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_980_flds>
## Removing raster <r_lfp_980_heads>
## Removing raster <r_lfp_980_out>
## Removing vector <r_lfp_980_heads>
## Removing vector <r_lfp_980_lfp>
## Removing vector <r_lfp_980_lfp2>
## Removing vector <r_lfp_980_out>
## Removing vector <r_lfp_980_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489904.252437885,2039824.56003488 output=LfpNetwork_lfp_tmp_cumayasa_stream_2104
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2104@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489904.252437885,2039824.56003488...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1047_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1047_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1047_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1047_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1047_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1047_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1047_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1047_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1047_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1047_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1047_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1047_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1047_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1047_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2104@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1047_flds>
## Removing raster <r_lfp_1047_heads>
## Removing raster <r_lfp_1047_out>
## Removing vector <r_lfp_1047_heads>
## Removing vector <r_lfp_1047_lfp>
## Removing vector <r_lfp_1047_lfp2>
## Removing vector <r_lfp_1047_out>
## Removing vector <r_lfp_1047_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2104@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489904.252437885,2039824.56003488...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1047_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1047_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1047_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1047_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1047_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1047_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1047_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1047_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1047_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1047_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1047_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1047_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1047_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1047_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2104@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1047_flds>
## Removing raster <r_lfp_1047_heads>
## Removing raster <r_lfp_1047_out>
## Removing vector <r_lfp_1047_heads>
## Removing vector <r_lfp_1047_lfp>
## Removing vector <r_lfp_1047_lfp2>
## Removing vector <r_lfp_1047_out>
## Removing vector <r_lfp_1047_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495887.040316697,2052964.21107561 output=LfpNetwork_lfp_tmp_cumayasa_stream_2107
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2107@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495887.040316697,2052964.21107561...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1106_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1106_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1106_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1106_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1106_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1106_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1106_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1106_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1106_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1106_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1106_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1106_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1106_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1106_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2107@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1106_flds>
## Removing raster <r_lfp_1106_heads>
## Removing raster <r_lfp_1106_out>
## Removing vector <r_lfp_1106_heads>
## Removing vector <r_lfp_1106_lfp>
## Removing vector <r_lfp_1106_lfp2>
## Removing vector <r_lfp_1106_out>
## Removing vector <r_lfp_1106_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2107@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495887.040316697,2052964.21107561...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1106_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1106_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1106_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1106_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1106_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1106_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1106_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1106_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1106_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1106_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1106_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1106_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1106_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1106_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2107@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1106_flds>
## Removing raster <r_lfp_1106_heads>
## Removing raster <r_lfp_1106_out>
## Removing vector <r_lfp_1106_heads>
## Removing vector <r_lfp_1106_lfp>
## Removing vector <r_lfp_1106_lfp2>
## Removing vector <r_lfp_1106_out>
## Removing vector <r_lfp_1106_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=494350.750318589,2049929.10156716 output=LfpNetwork_lfp_tmp_cumayasa_stream_2116
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2116@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494350.750318589,2049929.10156716...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1160_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1160_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1160_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1160_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1160_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1160_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1160_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1160_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1160_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1160_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1160_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1160_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1160_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1160_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2116@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1160_flds>
## Removing raster <r_lfp_1160_heads>
## Removing raster <r_lfp_1160_out>
## Removing vector <r_lfp_1160_heads>
## Removing vector <r_lfp_1160_lfp>
## Removing vector <r_lfp_1160_lfp2>
## Removing vector <r_lfp_1160_out>
## Removing vector <r_lfp_1160_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2116@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494350.750318589,2049929.10156716...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1160_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1160_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1160_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1160_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1160_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1160_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1160_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1160_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1160_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1160_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1160_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1160_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1160_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1160_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2116@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1160_flds>
## Removing raster <r_lfp_1160_heads>
## Removing raster <r_lfp_1160_out>
## Removing vector <r_lfp_1160_heads>
## Removing vector <r_lfp_1160_lfp>
## Removing vector <r_lfp_1160_lfp2>
## Removing vector <r_lfp_1160_out>
## Removing vector <r_lfp_1160_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=492202.442353754,2048842.45742215 output=LfpNetwork_lfp_tmp_cumayasa_stream_2135
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2135@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492202.442353754,2048842.45742215...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1216_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1216_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1216_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1216_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1216_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1216_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1216_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1216_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1216_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1216_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1216_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1216_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1216_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1216_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2135@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1216_flds>
## Removing raster <r_lfp_1216_heads>
## Removing raster <r_lfp_1216_out>
## Removing vector <r_lfp_1216_heads>
## Removing vector <r_lfp_1216_lfp>
## Removing vector <r_lfp_1216_lfp2>
## Removing vector <r_lfp_1216_out>
## Removing vector <r_lfp_1216_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2135@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492202.442353754,2048842.45742215...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1216_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1216_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1216_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1216_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1216_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1216_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1216_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1216_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1216_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1216_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1216_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1216_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1216_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1216_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2135@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1216_flds>
## Removing raster <r_lfp_1216_heads>
## Removing raster <r_lfp_1216_out>
## Removing vector <r_lfp_1216_heads>
## Removing vector <r_lfp_1216_lfp>
## Removing vector <r_lfp_1216_lfp2>
## Removing vector <r_lfp_1216_out>
## Removing vector <r_lfp_1216_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=492939.361946343,2048904.90823508 output=LfpNetwork_lfp_tmp_cumayasa_stream_2138
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2138@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492939.361946343,2048904.90823508...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1272_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1272_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1272_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1272_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1272_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1272_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1272_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1272_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1272_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1272_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1272_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1272_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1272_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1272_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2138@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1272_flds>
## Removing raster <r_lfp_1272_heads>
## Removing raster <r_lfp_1272_out>
## Removing vector <r_lfp_1272_heads>
## Removing vector <r_lfp_1272_lfp>
## Removing vector <r_lfp_1272_lfp2>
## Removing vector <r_lfp_1272_out>
## Removing vector <r_lfp_1272_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2138@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492939.361946343,2048904.90823508...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1272_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1272_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1272_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1272_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1272_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1272_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1272_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1272_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1272_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1272_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1272_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1272_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1272_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1272_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2138@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1272_flds>
## Removing raster <r_lfp_1272_heads>
## Removing raster <r_lfp_1272_out>
## Removing vector <r_lfp_1272_heads>
## Removing vector <r_lfp_1272_lfp>
## Removing vector <r_lfp_1272_lfp2>
## Removing vector <r_lfp_1272_out>
## Removing vector <r_lfp_1272_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=493663.791376345,2049529.4163644 output=LfpNetwork_lfp_tmp_cumayasa_stream_2170
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2170@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493663.791376345,2049529.4163644...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1336_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1336_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1336_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1336_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1336_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1336_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1336_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1336_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1336_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1336_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1336_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1336_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1336_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1336_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2170@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1336_flds>
## Removing raster <r_lfp_1336_heads>
## Removing raster <r_lfp_1336_out>
## Removing vector <r_lfp_1336_heads>
## Removing vector <r_lfp_1336_lfp>
## Removing vector <r_lfp_1336_lfp2>
## Removing vector <r_lfp_1336_out>
## Removing vector <r_lfp_1336_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2170@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493663.791376345,2049529.4163644...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1336_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1336_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1336_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1336_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1336_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1336_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1336_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1336_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1336_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1336_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1336_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1336_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1336_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1336_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2170@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1336_flds>
## Removing raster <r_lfp_1336_heads>
## Removing raster <r_lfp_1336_out>
## Removing vector <r_lfp_1336_heads>
## Removing vector <r_lfp_1336_lfp>
## Removing vector <r_lfp_1336_lfp2>
## Removing vector <r_lfp_1336_out>
## Removing vector <r_lfp_1336_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495624.746902386,2052039.93904423 output=LfpNetwork_lfp_tmp_cumayasa_stream_2200
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2200@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495624.746902386,2052039.93904423...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1392_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1392_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1392_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1392_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1392_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1392_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1392_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1392_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1392_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1392_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1392_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1392_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1392_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1392_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2200@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1392_flds>
## Removing raster <r_lfp_1392_heads>
## Removing raster <r_lfp_1392_out>
## Removing vector <r_lfp_1392_heads>
## Removing vector <r_lfp_1392_lfp>
## Removing vector <r_lfp_1392_lfp2>
## Removing vector <r_lfp_1392_out>
## Removing vector <r_lfp_1392_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2200@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495624.746902386,2052039.93904423...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1392_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1392_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1392_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1392_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1392_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1392_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1392_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1392_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1392_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1392_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1392_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1392_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1392_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1392_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2200@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1392_flds>
## Removing raster <r_lfp_1392_heads>
## Removing raster <r_lfp_1392_out>
## Removing vector <r_lfp_1392_heads>
## Removing vector <r_lfp_1392_lfp>
## Removing vector <r_lfp_1392_lfp2>
## Removing vector <r_lfp_1392_out>
## Removing vector <r_lfp_1392_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490441.329429094,2047905.69522818 output=LfpNetwork_lfp_tmp_cumayasa_stream_2209
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490441.329429094,2047905.69522818...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1444_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1444_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1444_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1444_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1444_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1444_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1444_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 3 of 3 features selected from vector map <r_lfp_1444_path@PERMANENT>
## 3 lines broken
## Building topology for vector map <r_lfp_1444_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 33% 66% 100%
## Processing areas...
## 100%
## Writing selected features...
## 16% 33% 50% 66% 83% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1444_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 3 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1444_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## WARNING: Vector map <r_lfp_1444_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1444_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## Selecting features...
## 3 of 3 features selected from vector map <r_lfp_1444_lfp@PERMANENT>
## 3 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1444_flds>
## Removing raster <r_lfp_1444_heads>
## Removing raster <r_lfp_1444_out>
## Removing vector <r_lfp_1444_heads>
## Removing vector <r_lfp_1444_lfp>
## Removing vector <r_lfp_1444_lfp2>
## Removing vector <r_lfp_1444_out>
## Removing vector <r_lfp_1444_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490441.329429094,2047905.69522818...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1444_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1444_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1444_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1444_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1444_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1444_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1444_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 3 of 3 features selected from vector map <r_lfp_1444_path@PERMANENT>
## 3 lines broken
## Building topology for vector map <r_lfp_1444_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 33% 66% 100%
## Processing areas...
## 100%
## Writing selected features...
## 16% 33% 50% 66% 83% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1444_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 3 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1444_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## WARNING: Vector map <r_lfp_1444_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1444_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## Selecting features...
## 3 of 3 features selected from vector map <r_lfp_1444_lfp@PERMANENT>
## 3 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1444_flds>
## Removing raster <r_lfp_1444_heads>
## Removing raster <r_lfp_1444_out>
## Removing vector <r_lfp_1444_heads>
## Removing vector <r_lfp_1444_lfp>
## Removing vector <r_lfp_1444_lfp2>
## Removing vector <r_lfp_1444_out>
## Removing vector <r_lfp_1444_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2209 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2209> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2209> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209@PERMANENT>...
## Registering primitives...
##
## v.category complete. 3 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2209 output=LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 33% 66% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 33% 66% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2209>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=496511.54844601,2053338.9159532 output=LfpNetwork_lfp_tmp_cumayasa_stream_2215
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496511.54844601,2053338.9159532...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1515_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1515_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1515_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1515_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1515_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1515_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1515_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_1515_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_1515_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1515_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1515_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_1515_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1515_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_1515_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1515_flds>
## Removing raster <r_lfp_1515_heads>
## Removing raster <r_lfp_1515_out>
## Removing vector <r_lfp_1515_heads>
## Removing vector <r_lfp_1515_lfp>
## Removing vector <r_lfp_1515_lfp2>
## Removing vector <r_lfp_1515_out>
## Removing vector <r_lfp_1515_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 496511.54844601,2053338.9159532...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1515_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1515_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1515_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1515_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1515_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1515_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1515_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_1515_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_1515_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1515_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1515_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_1515_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1515_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_1515_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1515_flds>
## Removing raster <r_lfp_1515_heads>
## Removing raster <r_lfp_1515_out>
## Removing vector <r_lfp_1515_heads>
## Removing vector <r_lfp_1515_lfp>
## Removing vector <r_lfp_1515_lfp2>
## Removing vector <r_lfp_1515_out>
## Removing vector <r_lfp_1515_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2215 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2215> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2215> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2215 output=LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2215>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=492090.030890478,2048680.08530853 output=LfpNetwork_lfp_tmp_cumayasa_stream_2218
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2218@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492090.030890478,2048680.08530853...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1594_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1594_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1594_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1594_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1594_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1594_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1594_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1594_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1594_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1594_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1594_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1594_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1594_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1594_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2218@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1594_flds>
## Removing raster <r_lfp_1594_heads>
## Removing raster <r_lfp_1594_out>
## Removing vector <r_lfp_1594_heads>
## Removing vector <r_lfp_1594_lfp>
## Removing vector <r_lfp_1594_lfp2>
## Removing vector <r_lfp_1594_out>
## Removing vector <r_lfp_1594_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2218@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492090.030890478,2048680.08530853...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1594_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1594_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1594_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1594_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1594_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1594_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1594_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1594_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1594_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1594_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1594_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1594_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1594_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1594_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2218@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1594_flds>
## Removing raster <r_lfp_1594_heads>
## Removing raster <r_lfp_1594_out>
## Removing vector <r_lfp_1594_heads>
## Removing vector <r_lfp_1594_lfp>
## Removing vector <r_lfp_1594_lfp2>
## Removing vector <r_lfp_1594_out>
## Removing vector <r_lfp_1594_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487506.141221325,2042584.88596644 output=LfpNetwork_lfp_tmp_cumayasa_stream_2229
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2229@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487506.141221325,2042584.88596644...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1650_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1650_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1650_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1650_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1650_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1650_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1650_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1650_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1650_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1650_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1650_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1650_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1650_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1650_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2229@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1650_flds>
## Removing raster <r_lfp_1650_heads>
## Removing raster <r_lfp_1650_out>
## Removing vector <r_lfp_1650_heads>
## Removing vector <r_lfp_1650_lfp>
## Removing vector <r_lfp_1650_lfp2>
## Removing vector <r_lfp_1650_out>
## Removing vector <r_lfp_1650_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2229@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487506.141221325,2042584.88596644...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1650_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1650_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1650_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1650_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1650_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1650_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1650_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1650_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1650_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1650_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1650_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1650_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1650_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1650_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2229@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1650_flds>
## Removing raster <r_lfp_1650_heads>
## Removing raster <r_lfp_1650_out>
## Removing vector <r_lfp_1650_heads>
## Removing vector <r_lfp_1650_lfp>
## Removing vector <r_lfp_1650_lfp2>
## Removing vector <r_lfp_1650_out>
## Removing vector <r_lfp_1650_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=494425.691294106,2050591.08018423 output=LfpNetwork_lfp_tmp_cumayasa_stream_2234
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2234@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494425.691294106,2050591.08018423...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1704_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1704_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1704_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1704_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1704_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1704_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1704_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1704_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1704_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1704_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1704_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1704_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1704_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1704_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2234@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1704_flds>
## Removing raster <r_lfp_1704_heads>
## Removing raster <r_lfp_1704_out>
## Removing vector <r_lfp_1704_heads>
## Removing vector <r_lfp_1704_lfp>
## Removing vector <r_lfp_1704_lfp2>
## Removing vector <r_lfp_1704_out>
## Removing vector <r_lfp_1704_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2234@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494425.691294106,2050591.08018423...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1704_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1704_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1704_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1704_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1704_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1704_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1704_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1704_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1704_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1704_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1704_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1704_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1704_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1704_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2234@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1704_flds>
## Removing raster <r_lfp_1704_heads>
## Removing raster <r_lfp_1704_out>
## Removing vector <r_lfp_1704_heads>
## Removing vector <r_lfp_1704_lfp>
## Removing vector <r_lfp_1704_lfp2>
## Removing vector <r_lfp_1704_out>
## Removing vector <r_lfp_1704_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488230.570651328,2044033.74482645 output=LfpNetwork_lfp_tmp_cumayasa_stream_2269
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2269@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488230.570651328,2044033.74482645...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1763_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1763_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1763_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1763_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1763_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1763_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1763_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1763_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1763_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1763_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1763_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1763_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1763_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1763_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2269@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1763_flds>
## Removing raster <r_lfp_1763_heads>
## Removing raster <r_lfp_1763_out>
## Removing vector <r_lfp_1763_heads>
## Removing vector <r_lfp_1763_lfp>
## Removing vector <r_lfp_1763_lfp2>
## Removing vector <r_lfp_1763_out>
## Removing vector <r_lfp_1763_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2269@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488230.570651328,2044033.74482645...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1763_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1763_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1763_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1763_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1763_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1763_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1763_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1763_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1763_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1763_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1763_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1763_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1763_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1763_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2269@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1763_flds>
## Removing raster <r_lfp_1763_heads>
## Removing raster <r_lfp_1763_out>
## Removing vector <r_lfp_1763_heads>
## Removing vector <r_lfp_1763_lfp>
## Removing vector <r_lfp_1763_lfp2>
## Removing vector <r_lfp_1763_out>
## Removing vector <r_lfp_1763_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487893.336261499,2043134.45312024 output=LfpNetwork_lfp_tmp_cumayasa_stream_2292
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2292@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487893.336261499,2043134.45312024...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1815_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1815_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1815_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1815_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1815_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1815_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1815_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1815_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1815_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1815_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1815_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1815_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1815_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1815_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2292@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1815_flds>
## Removing raster <r_lfp_1815_heads>
## Removing raster <r_lfp_1815_out>
## Removing vector <r_lfp_1815_heads>
## Removing vector <r_lfp_1815_lfp>
## Removing vector <r_lfp_1815_lfp2>
## Removing vector <r_lfp_1815_out>
## Removing vector <r_lfp_1815_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2292@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487893.336261499,2043134.45312024...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1815_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1815_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1815_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1815_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1815_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1815_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1815_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1815_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1815_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1815_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1815_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1815_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1815_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1815_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2292@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1815_flds>
## Removing raster <r_lfp_1815_heads>
## Removing raster <r_lfp_1815_out>
## Removing vector <r_lfp_1815_heads>
## Removing vector <r_lfp_1815_lfp>
## Removing vector <r_lfp_1815_lfp2>
## Removing vector <r_lfp_1815_out>
## Removing vector <r_lfp_1815_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495449.884626179,2051477.88172785 output=LfpNetwork_lfp_tmp_cumayasa_stream_2293
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2293@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495449.884626179,2051477.88172785...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1869_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1869_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1869_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1869_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1869_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1869_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1869_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1869_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1869_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1869_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1869_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1869_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1869_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1869_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2293@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1869_flds>
## Removing raster <r_lfp_1869_heads>
## Removing raster <r_lfp_1869_out>
## Removing vector <r_lfp_1869_heads>
## Removing vector <r_lfp_1869_lfp>
## Removing vector <r_lfp_1869_lfp2>
## Removing vector <r_lfp_1869_out>
## Removing vector <r_lfp_1869_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2293@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495449.884626179,2051477.88172785...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1869_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1869_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1869_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1869_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1869_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1869_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1869_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1869_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1869_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1869_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1869_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1869_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1869_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1869_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2293@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1869_flds>
## Removing raster <r_lfp_1869_heads>
## Removing raster <r_lfp_1869_out>
## Removing vector <r_lfp_1869_heads>
## Removing vector <r_lfp_1869_lfp>
## Removing vector <r_lfp_1869_lfp2>
## Removing vector <r_lfp_1869_out>
## Removing vector <r_lfp_1869_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489379.665609262,2040236.73540023 output=LfpNetwork_lfp_tmp_cumayasa_stream_2296
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2296@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489379.665609262,2040236.73540023...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1925_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1925_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1925_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1925_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1925_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1925_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1925_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1925_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1925_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1925_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1925_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1925_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1925_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1925_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2296@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1925_flds>
## Removing raster <r_lfp_1925_heads>
## Removing raster <r_lfp_1925_out>
## Removing vector <r_lfp_1925_heads>
## Removing vector <r_lfp_1925_lfp>
## Removing vector <r_lfp_1925_lfp2>
## Removing vector <r_lfp_1925_out>
## Removing vector <r_lfp_1925_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2296@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489379.665609262,2040236.73540023...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1925_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1925_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1925_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1925_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1925_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1925_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1925_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1925_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_1925_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1925_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1925_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_1925_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1925_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_1925_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2296@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1925_flds>
## Removing raster <r_lfp_1925_heads>
## Removing raster <r_lfp_1925_out>
## Removing vector <r_lfp_1925_heads>
## Removing vector <r_lfp_1925_lfp>
## Removing vector <r_lfp_1925_lfp2>
## Removing vector <r_lfp_1925_out>
## Removing vector <r_lfp_1925_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489904.252437885,2046394.38555525 output=LfpNetwork_lfp_tmp_cumayasa_stream_2309
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489904.252437885,2046394.38555525...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1983_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1983_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1983_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1983_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1983_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1983_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1983_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_1983_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_1983_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1983_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1983_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_1983_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1983_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_1983_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1983_flds>
## Removing raster <r_lfp_1983_heads>
## Removing raster <r_lfp_1983_out>
## Removing vector <r_lfp_1983_heads>
## Removing vector <r_lfp_1983_lfp>
## Removing vector <r_lfp_1983_lfp2>
## Removing vector <r_lfp_1983_out>
## Removing vector <r_lfp_1983_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489904.252437885,2046394.38555525...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_1983_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_1983_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_1983_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1983_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_1983_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_1983_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_1983_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_1983_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_1983_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_1983_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1983_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_1983_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_1983_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_1983_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_1983_flds>
## Removing raster <r_lfp_1983_heads>
## Removing raster <r_lfp_1983_out>
## Removing vector <r_lfp_1983_heads>
## Removing vector <r_lfp_1983_lfp>
## Removing vector <r_lfp_1983_lfp2>
## Removing vector <r_lfp_1983_out>
## Removing vector <r_lfp_1983_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2309 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2309> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2309> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2309 output=LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2309>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=495025.219098246,2051240.56863871 output=LfpNetwork_lfp_tmp_cumayasa_stream_2313
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2313@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495025.219098246,2051240.56863871...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2058_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2058_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2058_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2058_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2058_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2058_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2058_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2058_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2058_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2058_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2058_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2058_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2058_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2058_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2313@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2058_flds>
## Removing raster <r_lfp_2058_heads>
## Removing raster <r_lfp_2058_out>
## Removing vector <r_lfp_2058_heads>
## Removing vector <r_lfp_2058_lfp>
## Removing vector <r_lfp_2058_lfp2>
## Removing vector <r_lfp_2058_out>
## Removing vector <r_lfp_2058_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2313@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 495025.219098246,2051240.56863871...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2058_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2058_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2058_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2058_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2058_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2058_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2058_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2058_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2058_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2058_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2058_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2058_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2058_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2058_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2313@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2058_flds>
## Removing raster <r_lfp_2058_heads>
## Removing raster <r_lfp_2058_out>
## Removing vector <r_lfp_2058_heads>
## Removing vector <r_lfp_2058_lfp>
## Removing vector <r_lfp_2058_lfp2>
## Removing vector <r_lfp_2058_out>
## Removing vector <r_lfp_2058_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488942.509918744,2045507.58401162 output=LfpNetwork_lfp_tmp_cumayasa_stream_2318
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2318@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488942.509918744,2045507.58401162...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2112_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2112_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2112_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2112_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2112_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2112_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2112_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2112_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2112_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2112_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2112_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2112_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2112_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2112_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2318@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2112_flds>
## Removing raster <r_lfp_2112_heads>
## Removing raster <r_lfp_2112_out>
## Removing vector <r_lfp_2112_heads>
## Removing vector <r_lfp_2112_lfp>
## Removing vector <r_lfp_2112_lfp2>
## Removing vector <r_lfp_2112_out>
## Removing vector <r_lfp_2112_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2318@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488942.509918744,2045507.58401162...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2112_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2112_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2112_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2112_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2112_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2112_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2112_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2112_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2112_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2112_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2112_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2112_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2112_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2112_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2318@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2112_flds>
## Removing raster <r_lfp_2112_heads>
## Removing raster <r_lfp_2112_out>
## Removing vector <r_lfp_2112_heads>
## Removing vector <r_lfp_2112_lfp>
## Removing vector <r_lfp_2112_lfp2>
## Removing vector <r_lfp_2112_out>
## Removing vector <r_lfp_2112_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=494762.925683935,2051028.23587475 output=LfpNetwork_lfp_tmp_cumayasa_stream_2320
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2320@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494762.925683935,2051028.23587475...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2168_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2168_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2168_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2168_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2168_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2168_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2168_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2168_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2168_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2168_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2168_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2168_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2168_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2168_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2320@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2168_flds>
## Removing raster <r_lfp_2168_heads>
## Removing raster <r_lfp_2168_out>
## Removing vector <r_lfp_2168_heads>
## Removing vector <r_lfp_2168_lfp>
## Removing vector <r_lfp_2168_lfp2>
## Removing vector <r_lfp_2168_out>
## Removing vector <r_lfp_2168_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2320@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494762.925683935,2051028.23587475...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2168_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2168_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2168_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2168_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2168_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2168_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2168_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2168_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2168_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2168_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2168_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2168_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2168_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2168_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2320@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2168_flds>
## Removing raster <r_lfp_2168_heads>
## Removing raster <r_lfp_2168_out>
## Removing vector <r_lfp_2168_heads>
## Removing vector <r_lfp_2168_lfp>
## Removing vector <r_lfp_2168_lfp2>
## Removing vector <r_lfp_2168_out>
## Removing vector <r_lfp_2168_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489641.959023574,2040074.36328661 output=LfpNetwork_lfp_tmp_cumayasa_stream_2321
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2321@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489641.959023574,2040074.36328661...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2222_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2222_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2222_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2222_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2222_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2222_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2222_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2222_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2222_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2222_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2222_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2222_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2222_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2222_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2321@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2222_flds>
## Removing raster <r_lfp_2222_heads>
## Removing raster <r_lfp_2222_out>
## Removing vector <r_lfp_2222_heads>
## Removing vector <r_lfp_2222_lfp>
## Removing vector <r_lfp_2222_lfp2>
## Removing vector <r_lfp_2222_out>
## Removing vector <r_lfp_2222_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2321@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489641.959023574,2040074.36328661...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2222_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2222_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2222_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2222_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2222_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2222_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2222_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2222_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2222_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2222_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2222_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2222_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2222_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2222_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2321@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2222_flds>
## Removing raster <r_lfp_2222_heads>
## Removing raster <r_lfp_2222_out>
## Removing vector <r_lfp_2222_heads>
## Removing vector <r_lfp_2222_lfp>
## Removing vector <r_lfp_2222_lfp2>
## Removing vector <r_lfp_2222_out>
## Removing vector <r_lfp_2222_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489079.901707193,2040311.67637575 output=LfpNetwork_lfp_tmp_cumayasa_stream_2322
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2322@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489079.901707193,2040311.67637575...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2280_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2280_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2280_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2280_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2280_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2280_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2280_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2280_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2280_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2280_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2280_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2280_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2280_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2280_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2322@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2280_flds>
## Removing raster <r_lfp_2280_heads>
## Removing raster <r_lfp_2280_out>
## Removing vector <r_lfp_2280_heads>
## Removing vector <r_lfp_2280_lfp>
## Removing vector <r_lfp_2280_lfp2>
## Removing vector <r_lfp_2280_out>
## Removing vector <r_lfp_2280_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2322@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489079.901707193,2040311.67637575...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2280_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2280_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2280_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2280_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2280_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2280_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2280_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2280_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2280_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2280_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2280_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2280_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2280_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2280_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2322@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2280_flds>
## Removing raster <r_lfp_2280_heads>
## Removing raster <r_lfp_2280_out>
## Removing vector <r_lfp_2280_heads>
## Removing vector <r_lfp_2280_lfp>
## Removing vector <r_lfp_2280_lfp2>
## Removing vector <r_lfp_2280_out>
## Removing vector <r_lfp_2280_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487830.885448568,2043871.37271283 output=LfpNetwork_lfp_tmp_cumayasa_stream_2323
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487830.885448568,2043871.37271283...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2334_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2334_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2334_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2334_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2334_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2334_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2334_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_2334_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_2334_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2334_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2334_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_2334_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2334_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_2334_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2334_flds>
## Removing raster <r_lfp_2334_heads>
## Removing raster <r_lfp_2334_out>
## Removing vector <r_lfp_2334_heads>
## Removing vector <r_lfp_2334_lfp>
## Removing vector <r_lfp_2334_lfp2>
## Removing vector <r_lfp_2334_out>
## Removing vector <r_lfp_2334_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487830.885448568,2043871.37271283...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2334_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2334_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2334_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2334_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2334_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2334_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2334_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_2334_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_2334_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2334_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2334_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_2334_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2334_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_2334_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2334_flds>
## Removing raster <r_lfp_2334_heads>
## Removing raster <r_lfp_2334_out>
## Removing vector <r_lfp_2334_heads>
## Removing vector <r_lfp_2334_lfp>
## Removing vector <r_lfp_2334_lfp2>
## Removing vector <r_lfp_2334_out>
## Removing vector <r_lfp_2334_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2323 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2323> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2323> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2323 output=LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2323>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487593.572359429,2043146.94328282 output=LfpNetwork_lfp_tmp_cumayasa_stream_2345
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2345@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487593.572359429,2043146.94328282...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2405_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2405_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2405_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2405_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2405_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2405_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2405_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2405_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2405_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2405_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2405_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2405_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2405_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2405_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2345@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2405_flds>
## Removing raster <r_lfp_2405_heads>
## Removing raster <r_lfp_2405_out>
## Removing vector <r_lfp_2405_heads>
## Removing vector <r_lfp_2405_lfp>
## Removing vector <r_lfp_2405_lfp2>
## Removing vector <r_lfp_2405_out>
## Removing vector <r_lfp_2405_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2345@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487593.572359429,2043146.94328282...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2405_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2405_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2405_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2405_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2405_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2405_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2405_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2405_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2405_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2405_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2405_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2405_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2405_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2405_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2345@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2405_flds>
## Removing raster <r_lfp_2405_heads>
## Removing raster <r_lfp_2405_out>
## Removing vector <r_lfp_2405_heads>
## Removing vector <r_lfp_2405_lfp>
## Removing vector <r_lfp_2405_lfp2>
## Removing vector <r_lfp_2405_out>
## Removing vector <r_lfp_2405_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489616.978698401,2046094.62165318 output=LfpNetwork_lfp_tmp_cumayasa_stream_2350
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2350@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489616.978698401,2046094.62165318...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2461_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2461_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2461_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2461_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2461_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2461_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2461_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2461_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2461_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2461_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2461_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2461_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2461_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2461_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2350@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2461_flds>
## Removing raster <r_lfp_2461_heads>
## Removing raster <r_lfp_2461_out>
## Removing vector <r_lfp_2461_heads>
## Removing vector <r_lfp_2461_lfp>
## Removing vector <r_lfp_2461_lfp2>
## Removing vector <r_lfp_2461_out>
## Removing vector <r_lfp_2461_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2350@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489616.978698401,2046094.62165318...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2461_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2461_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2461_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2461_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2461_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2461_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2461_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2461_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2461_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2461_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2461_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2461_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2461_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2461_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2350@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2461_flds>
## Removing raster <r_lfp_2461_heads>
## Removing raster <r_lfp_2461_out>
## Removing vector <r_lfp_2461_heads>
## Removing vector <r_lfp_2461_lfp>
## Removing vector <r_lfp_2461_lfp2>
## Removing vector <r_lfp_2461_out>
## Removing vector <r_lfp_2461_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490204.016339955,2046619.2084818 output=LfpNetwork_lfp_tmp_cumayasa_stream_2353
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2353@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490204.016339955,2046619.2084818...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2527_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2527_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2527_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2527_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2527_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2527_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2527_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2527_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2527_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2527_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2527_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2527_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2527_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2527_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2353@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2527_flds>
## Removing raster <r_lfp_2527_heads>
## Removing raster <r_lfp_2527_out>
## Removing vector <r_lfp_2527_heads>
## Removing vector <r_lfp_2527_lfp>
## Removing vector <r_lfp_2527_lfp2>
## Removing vector <r_lfp_2527_out>
## Removing vector <r_lfp_2527_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2353@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490204.016339955,2046619.2084818...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2527_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2527_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2527_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2527_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2527_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2527_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2527_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2527_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2527_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2527_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2527_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2527_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2527_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2527_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2353@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2527_flds>
## Removing raster <r_lfp_2527_heads>
## Removing raster <r_lfp_2527_out>
## Removing vector <r_lfp_2527_heads>
## Removing vector <r_lfp_2527_lfp>
## Removing vector <r_lfp_2527_lfp2>
## Removing vector <r_lfp_2527_out>
## Removing vector <r_lfp_2527_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487855.86577374,2043883.86287541 output=LfpNetwork_lfp_tmp_cumayasa_stream_2361
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2361@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487855.86577374,2043883.86287541...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2583_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2583_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2583_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2583_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2583_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2583_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2583_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2583_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2583_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2583_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2583_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2583_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2583_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2583_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2361@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2583_flds>
## Removing raster <r_lfp_2583_heads>
## Removing raster <r_lfp_2583_out>
## Removing vector <r_lfp_2583_heads>
## Removing vector <r_lfp_2583_lfp>
## Removing vector <r_lfp_2583_lfp2>
## Removing vector <r_lfp_2583_out>
## Removing vector <r_lfp_2583_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2361@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487855.86577374,2043883.86287541...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2583_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2583_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2583_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2583_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2583_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2583_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2583_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2583_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2583_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2583_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2583_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2583_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2583_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2583_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2361@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2583_flds>
## Removing raster <r_lfp_2583_heads>
## Removing raster <r_lfp_2583_out>
## Removing vector <r_lfp_2583_heads>
## Removing vector <r_lfp_2583_lfp>
## Removing vector <r_lfp_2583_lfp2>
## Removing vector <r_lfp_2583_out>
## Removing vector <r_lfp_2583_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=494375.730643761,2050278.82611957 output=LfpNetwork_lfp_tmp_cumayasa_stream_2364
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2364@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494375.730643761,2050278.82611957...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2635_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2635_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2635_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2635_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2635_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2635_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2635_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2635_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2635_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2635_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2635_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2635_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2635_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2635_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2364@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2635_flds>
## Removing raster <r_lfp_2635_heads>
## Removing raster <r_lfp_2635_out>
## Removing vector <r_lfp_2635_heads>
## Removing vector <r_lfp_2635_lfp>
## Removing vector <r_lfp_2635_lfp2>
## Removing vector <r_lfp_2635_out>
## Removing vector <r_lfp_2635_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2364@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494375.730643761,2050278.82611957...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2635_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2635_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2635_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2635_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2635_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2635_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2635_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2635_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2635_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2635_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2635_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2635_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2635_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2635_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2364@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2635_flds>
## Removing raster <r_lfp_2635_heads>
## Removing raster <r_lfp_2635_out>
## Removing vector <r_lfp_2635_heads>
## Removing vector <r_lfp_2635_lfp>
## Removing vector <r_lfp_2635_lfp2>
## Removing vector <r_lfp_2635_out>
## Removing vector <r_lfp_2635_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487443.690408394,2043009.55149438 output=LfpNetwork_lfp_tmp_cumayasa_stream_2370
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487443.690408394,2043009.55149438...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2687_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2687_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2687_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2687_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2687_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2687_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2687_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_2687_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_2687_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2687_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2687_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_2687_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2687_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_2687_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2687_flds>
## Removing raster <r_lfp_2687_heads>
## Removing raster <r_lfp_2687_out>
## Removing vector <r_lfp_2687_heads>
## Removing vector <r_lfp_2687_lfp>
## Removing vector <r_lfp_2687_lfp2>
## Removing vector <r_lfp_2687_out>
## Removing vector <r_lfp_2687_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487443.690408394,2043009.55149438...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2687_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2687_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2687_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2687_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2687_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2687_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2687_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_2687_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_2687_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2687_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2687_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_2687_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2687_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_2687_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2687_flds>
## Removing raster <r_lfp_2687_heads>
## Removing raster <r_lfp_2687_out>
## Removing vector <r_lfp_2687_heads>
## Removing vector <r_lfp_2687_lfp>
## Removing vector <r_lfp_2687_lfp2>
## Removing vector <r_lfp_2687_out>
## Removing vector <r_lfp_2687_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2370 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2370> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2370> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2370 output=LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2370>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489929.232763057,2046157.07246611 output=LfpNetwork_lfp_tmp_cumayasa_stream_2374
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2374@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489929.232763057,2046157.07246611...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2760_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2760_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2760_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2760_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2760_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2760_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2760_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2760_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2760_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2760_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2760_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2760_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2760_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2760_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2374@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2760_flds>
## Removing raster <r_lfp_2760_heads>
## Removing raster <r_lfp_2760_out>
## Removing vector <r_lfp_2760_heads>
## Removing vector <r_lfp_2760_lfp>
## Removing vector <r_lfp_2760_lfp2>
## Removing vector <r_lfp_2760_out>
## Removing vector <r_lfp_2760_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2374@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489929.232763057,2046157.07246611...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2760_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2760_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2760_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2760_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2760_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2760_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2760_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2760_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2760_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2760_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2760_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2760_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2760_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2760_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2374@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2760_flds>
## Removing raster <r_lfp_2760_heads>
## Removing raster <r_lfp_2760_out>
## Removing vector <r_lfp_2760_heads>
## Removing vector <r_lfp_2760_lfp>
## Removing vector <r_lfp_2760_lfp2>
## Removing vector <r_lfp_2760_out>
## Removing vector <r_lfp_2760_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489929.232763057,2046194.54295387 output=LfpNetwork_lfp_tmp_cumayasa_stream_2386
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2386@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489929.232763057,2046194.54295387...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2819_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2819_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2819_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2819_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2819_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2819_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2819_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2819_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2819_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2819_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2819_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2819_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2819_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2819_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2386@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2819_flds>
## Removing raster <r_lfp_2819_heads>
## Removing raster <r_lfp_2819_out>
## Removing vector <r_lfp_2819_heads>
## Removing vector <r_lfp_2819_lfp>
## Removing vector <r_lfp_2819_lfp2>
## Removing vector <r_lfp_2819_out>
## Removing vector <r_lfp_2819_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2386@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489929.232763057,2046194.54295387...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2819_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2819_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2819_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2819_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2819_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2819_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2819_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2819_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2819_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2819_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2819_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2819_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2819_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2819_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2386@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2819_flds>
## Removing raster <r_lfp_2819_heads>
## Removing raster <r_lfp_2819_out>
## Removing vector <r_lfp_2819_heads>
## Removing vector <r_lfp_2819_lfp>
## Removing vector <r_lfp_2819_lfp2>
## Removing vector <r_lfp_2819_out>
## Removing vector <r_lfp_2819_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490353.89829099,2046769.09043284 output=LfpNetwork_lfp_tmp_cumayasa_stream_2397
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2397@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490353.89829099,2046769.09043284...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2876_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2876_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2876_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2876_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2876_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2876_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2876_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2876_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2876_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2876_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2876_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2876_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2876_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2876_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2397@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2876_flds>
## Removing raster <r_lfp_2876_heads>
## Removing raster <r_lfp_2876_out>
## Removing vector <r_lfp_2876_heads>
## Removing vector <r_lfp_2876_lfp>
## Removing vector <r_lfp_2876_lfp2>
## Removing vector <r_lfp_2876_out>
## Removing vector <r_lfp_2876_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2397@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490353.89829099,2046769.09043284...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2876_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2876_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2876_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2876_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2876_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2876_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2876_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2876_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2876_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2876_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2876_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2876_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2876_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2876_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2397@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2876_flds>
## Removing raster <r_lfp_2876_heads>
## Removing raster <r_lfp_2876_out>
## Removing vector <r_lfp_2876_heads>
## Removing vector <r_lfp_2876_lfp>
## Removing vector <r_lfp_2876_lfp2>
## Removing vector <r_lfp_2876_out>
## Removing vector <r_lfp_2876_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=493751.222514449,2049754.23929095 output=LfpNetwork_lfp_tmp_cumayasa_stream_2399
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2399@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493751.222514449,2049754.23929095...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2932_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2932_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2932_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2932_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2932_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2932_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2932_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2932_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2932_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2932_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2932_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2932_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2932_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2932_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2399@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2932_flds>
## Removing raster <r_lfp_2932_heads>
## Removing raster <r_lfp_2932_out>
## Removing vector <r_lfp_2932_heads>
## Removing vector <r_lfp_2932_lfp>
## Removing vector <r_lfp_2932_lfp2>
## Removing vector <r_lfp_2932_out>
## Removing vector <r_lfp_2932_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2399@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493751.222514449,2049754.23929095...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2932_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2932_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2932_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2932_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2932_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2932_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2932_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2932_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2932_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2932_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2932_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2932_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2932_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2932_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2399@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2932_flds>
## Removing raster <r_lfp_2932_heads>
## Removing raster <r_lfp_2932_out>
## Removing vector <r_lfp_2932_heads>
## Removing vector <r_lfp_2932_lfp>
## Removing vector <r_lfp_2932_lfp2>
## Removing vector <r_lfp_2932_out>
## Removing vector <r_lfp_2932_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=494375.730643761,2050004.04254267 output=LfpNetwork_lfp_tmp_cumayasa_stream_2403
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2403@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494375.730643761,2050004.04254267...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2992_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2992_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2992_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2992_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2992_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2992_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2992_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2992_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2992_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2992_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2992_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2992_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2992_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2992_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2403@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2992_flds>
## Removing raster <r_lfp_2992_heads>
## Removing raster <r_lfp_2992_out>
## Removing vector <r_lfp_2992_heads>
## Removing vector <r_lfp_2992_lfp>
## Removing vector <r_lfp_2992_lfp2>
## Removing vector <r_lfp_2992_out>
## Removing vector <r_lfp_2992_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2403@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 494375.730643761,2050004.04254267...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_2992_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_2992_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_2992_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2992_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_2992_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_2992_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_2992_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2992_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_2992_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_2992_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2992_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_2992_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_2992_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_2992_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2403@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_2992_flds>
## Removing raster <r_lfp_2992_heads>
## Removing raster <r_lfp_2992_out>
## Removing vector <r_lfp_2992_heads>
## Removing vector <r_lfp_2992_lfp>
## Removing vector <r_lfp_2992_lfp2>
## Removing vector <r_lfp_2992_out>
## Removing vector <r_lfp_2992_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=492764.499670135,2048780.00660922 output=LfpNetwork_lfp_tmp_cumayasa_stream_2410
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2410@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492764.499670135,2048780.00660922...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3052_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3052_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3052_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3052_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3052_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3052_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3052_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3052_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3052_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3052_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3052_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3052_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3052_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3052_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2410@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3052_flds>
## Removing raster <r_lfp_3052_heads>
## Removing raster <r_lfp_3052_out>
## Removing vector <r_lfp_3052_heads>
## Removing vector <r_lfp_3052_lfp>
## Removing vector <r_lfp_3052_lfp2>
## Removing vector <r_lfp_3052_out>
## Removing vector <r_lfp_3052_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2410@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492764.499670135,2048780.00660922...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3052_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3052_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3052_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3052_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3052_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3052_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3052_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3052_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3052_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3052_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3052_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3052_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3052_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3052_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2410@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3052_flds>
## Removing raster <r_lfp_3052_heads>
## Removing raster <r_lfp_3052_out>
## Removing vector <r_lfp_3052_heads>
## Removing vector <r_lfp_3052_lfp>
## Removing vector <r_lfp_3052_lfp2>
## Removing vector <r_lfp_3052_out>
## Removing vector <r_lfp_3052_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488367.962439776,2044183.62677748 output=LfpNetwork_lfp_tmp_cumayasa_stream_2413
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2413@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488367.962439776,2044183.62677748...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3110_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3110_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3110_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3110_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3110_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3110_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3110_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3110_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3110_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3110_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3110_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3110_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3110_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3110_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2413@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3110_flds>
## Removing raster <r_lfp_3110_heads>
## Removing raster <r_lfp_3110_out>
## Removing vector <r_lfp_3110_heads>
## Removing vector <r_lfp_3110_lfp>
## Removing vector <r_lfp_3110_lfp2>
## Removing vector <r_lfp_3110_out>
## Removing vector <r_lfp_3110_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2413@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488367.962439776,2044183.62677748...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3110_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3110_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3110_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3110_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3110_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3110_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3110_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3110_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3110_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3110_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3110_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3110_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3110_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3110_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2413@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3110_flds>
## Removing raster <r_lfp_3110_heads>
## Removing raster <r_lfp_3110_out>
## Removing vector <r_lfp_3110_heads>
## Removing vector <r_lfp_3110_lfp>
## Removing vector <r_lfp_3110_lfp2>
## Removing vector <r_lfp_3110_out>
## Removing vector <r_lfp_3110_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=492439.755442893,2048755.02628405 output=LfpNetwork_lfp_tmp_cumayasa_stream_2417
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2417@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492439.755442893,2048755.02628405...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3166_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3166_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3166_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3166_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3166_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3166_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3166_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3166_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3166_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3166_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3166_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3166_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3166_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3166_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2417@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3166_flds>
## Removing raster <r_lfp_3166_heads>
## Removing raster <r_lfp_3166_out>
## Removing vector <r_lfp_3166_heads>
## Removing vector <r_lfp_3166_lfp>
## Removing vector <r_lfp_3166_lfp2>
## Removing vector <r_lfp_3166_out>
## Removing vector <r_lfp_3166_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2417@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 492439.755442893,2048755.02628405...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3166_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3166_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3166_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3166_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3166_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3166_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3166_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3166_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3166_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3166_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3166_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3166_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3166_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3166_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2417@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3166_flds>
## Removing raster <r_lfp_3166_heads>
## Removing raster <r_lfp_3166_out>
## Removing vector <r_lfp_3166_heads>
## Removing vector <r_lfp_3166_lfp>
## Removing vector <r_lfp_3166_lfp2>
## Removing vector <r_lfp_3166_out>
## Removing vector <r_lfp_3166_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=493626.320888587,2049541.90652698 output=LfpNetwork_lfp_tmp_cumayasa_stream_2420
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2420@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493626.320888587,2049541.90652698...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3222_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3222_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3222_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3222_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3222_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3222_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3222_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3222_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3222_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3222_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3222_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3222_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3222_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3222_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2420@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3222_flds>
## Removing raster <r_lfp_3222_heads>
## Removing raster <r_lfp_3222_out>
## Removing vector <r_lfp_3222_heads>
## Removing vector <r_lfp_3222_lfp>
## Removing vector <r_lfp_3222_lfp2>
## Removing vector <r_lfp_3222_out>
## Removing vector <r_lfp_3222_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2420@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493626.320888587,2049541.90652698...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3222_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3222_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3222_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3222_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3222_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3222_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3222_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3222_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3222_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3222_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3222_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3222_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3222_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3222_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2420@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3222_flds>
## Removing raster <r_lfp_3222_heads>
## Removing raster <r_lfp_3222_out>
## Removing vector <r_lfp_3222_heads>
## Removing vector <r_lfp_3222_lfp>
## Removing vector <r_lfp_3222_lfp2>
## Removing vector <r_lfp_3222_out>
## Removing vector <r_lfp_3222_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489229.783658228,2045857.30856404 output=LfpNetwork_lfp_tmp_cumayasa_stream_2421
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2421@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489229.783658228,2045857.30856404...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3280_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3280_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3280_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3280_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3280_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3280_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3280_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3280_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3280_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3280_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3280_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3280_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3280_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3280_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2421@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3280_flds>
## Removing raster <r_lfp_3280_heads>
## Removing raster <r_lfp_3280_out>
## Removing vector <r_lfp_3280_heads>
## Removing vector <r_lfp_3280_lfp>
## Removing vector <r_lfp_3280_lfp2>
## Removing vector <r_lfp_3280_out>
## Removing vector <r_lfp_3280_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2421@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489229.783658228,2045857.30856404...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3280_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3280_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3280_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3280_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3280_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3280_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3280_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3280_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3280_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3280_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3280_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3280_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3280_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3280_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2421@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3280_flds>
## Removing raster <r_lfp_3280_heads>
## Removing raster <r_lfp_3280_out>
## Removing vector <r_lfp_3280_heads>
## Removing vector <r_lfp_3280_lfp>
## Removing vector <r_lfp_3280_lfp2>
## Removing vector <r_lfp_3280_out>
## Removing vector <r_lfp_3280_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=493051.773409619,2049142.22132422 output=LfpNetwork_lfp_tmp_cumayasa_stream_2433
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2433@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493051.773409619,2049142.22132422...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3334_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3334_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3334_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3334_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3334_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3334_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3334_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3334_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3334_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3334_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3334_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3334_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3334_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3334_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2433@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3334_flds>
## Removing raster <r_lfp_3334_heads>
## Removing raster <r_lfp_3334_out>
## Removing vector <r_lfp_3334_heads>
## Removing vector <r_lfp_3334_lfp>
## Removing vector <r_lfp_3334_lfp2>
## Removing vector <r_lfp_3334_out>
## Removing vector <r_lfp_3334_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2433@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 493051.773409619,2049142.22132422...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3334_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3334_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3334_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3334_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3334_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3334_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3334_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3334_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3334_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3334_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3334_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3334_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3334_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3334_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2433@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3334_flds>
## Removing raster <r_lfp_3334_heads>
## Removing raster <r_lfp_3334_out>
## Removing vector <r_lfp_3334_heads>
## Removing vector <r_lfp_3334_lfp>
## Removing vector <r_lfp_3334_lfp2>
## Removing vector <r_lfp_3334_out>
## Removing vector <r_lfp_3334_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488230.570651328,2044670.74311835 output=LfpNetwork_lfp_tmp_cumayasa_stream_2435
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2435@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488230.570651328,2044670.74311835...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3392_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3392_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3392_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3392_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3392_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3392_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3392_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3392_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3392_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3392_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3392_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3392_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3392_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3392_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2435@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3392_flds>
## Removing raster <r_lfp_3392_heads>
## Removing raster <r_lfp_3392_out>
## Removing vector <r_lfp_3392_heads>
## Removing vector <r_lfp_3392_lfp>
## Removing vector <r_lfp_3392_lfp2>
## Removing vector <r_lfp_3392_out>
## Removing vector <r_lfp_3392_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2435@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488230.570651328,2044670.74311835...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3392_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3392_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3392_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3392_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3392_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3392_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3392_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3392_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3392_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3392_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3392_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3392_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3392_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3392_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2435@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3392_flds>
## Removing raster <r_lfp_3392_heads>
## Removing raster <r_lfp_3392_out>
## Removing vector <r_lfp_3392_heads>
## Removing vector <r_lfp_3392_lfp>
## Removing vector <r_lfp_3392_lfp2>
## Removing vector <r_lfp_3392_out>
## Removing vector <r_lfp_3392_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487468.670733567,2042984.5711692 output=LfpNetwork_lfp_tmp_cumayasa_stream_2436
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2436@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487468.670733567,2042984.5711692...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3446_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3446_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3446_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3446_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3446_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3446_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3446_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3446_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3446_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3446_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3446_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3446_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3446_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3446_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2436@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3446_flds>
## Removing raster <r_lfp_3446_heads>
## Removing raster <r_lfp_3446_out>
## Removing vector <r_lfp_3446_heads>
## Removing vector <r_lfp_3446_lfp>
## Removing vector <r_lfp_3446_lfp2>
## Removing vector <r_lfp_3446_out>
## Removing vector <r_lfp_3446_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2436@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487468.670733567,2042984.5711692...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3446_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3446_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3446_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3446_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3446_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3446_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3446_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3446_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3446_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3446_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3446_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3446_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3446_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3446_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2436@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3446_flds>
## Removing raster <r_lfp_3446_heads>
## Removing raster <r_lfp_3446_out>
## Removing vector <r_lfp_3446_heads>
## Removing vector <r_lfp_3446_lfp>
## Removing vector <r_lfp_3446_lfp2>
## Removing vector <r_lfp_3446_out>
## Removing vector <r_lfp_3446_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488168.119838396,2041073.57629351 output=LfpNetwork_lfp_tmp_cumayasa_stream_2437
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488168.119838396,2041073.57629351...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3502_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3502_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3502_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3502_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3502_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3502_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3502_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3502_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_3502_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3502_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3502_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_3502_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3502_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3502_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3502_flds>
## Removing raster <r_lfp_3502_heads>
## Removing raster <r_lfp_3502_out>
## Removing vector <r_lfp_3502_heads>
## Removing vector <r_lfp_3502_lfp>
## Removing vector <r_lfp_3502_lfp2>
## Removing vector <r_lfp_3502_out>
## Removing vector <r_lfp_3502_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488168.119838396,2041073.57629351...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3502_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3502_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3502_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3502_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3502_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3502_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3502_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3502_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_3502_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3502_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3502_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_3502_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3502_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3502_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3502_flds>
## Removing raster <r_lfp_3502_heads>
## Removing raster <r_lfp_3502_out>
## Removing vector <r_lfp_3502_heads>
## Removing vector <r_lfp_3502_lfp>
## Removing vector <r_lfp_3502_lfp2>
## Removing vector <r_lfp_3502_out>
## Removing vector <r_lfp_3502_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2437 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2437> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2437> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2437 output=LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2437>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488492.864065639,2045007.97750817 output=LfpNetwork_lfp_tmp_cumayasa_stream_2438
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2438@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488492.864065639,2045007.97750817...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3572_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3572_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3572_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3572_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3572_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3572_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3572_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3572_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3572_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3572_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3572_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3572_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3572_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3572_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2438@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3572_flds>
## Removing raster <r_lfp_3572_heads>
## Removing raster <r_lfp_3572_out>
## Removing vector <r_lfp_3572_heads>
## Removing vector <r_lfp_3572_lfp>
## Removing vector <r_lfp_3572_lfp2>
## Removing vector <r_lfp_3572_out>
## Removing vector <r_lfp_3572_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2438@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488492.864065639,2045007.97750817...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3572_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3572_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3572_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3572_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3572_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3572_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3572_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3572_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3572_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3572_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3572_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3572_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3572_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3572_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2438@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3572_flds>
## Removing raster <r_lfp_3572_heads>
## Removing raster <r_lfp_3572_out>
## Removing vector <r_lfp_3572_heads>
## Removing vector <r_lfp_3572_lfp>
## Removing vector <r_lfp_3572_lfp2>
## Removing vector <r_lfp_3572_out>
## Removing vector <r_lfp_3572_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490865.994957026,2048342.8509187 output=LfpNetwork_lfp_tmp_cumayasa_stream_2448
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2448@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490865.994957026,2048342.8509187...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3632_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3632_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3632_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3632_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3632_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3632_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3632_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3632_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3632_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3632_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3632_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3632_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3632_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3632_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2448@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3632_flds>
## Removing raster <r_lfp_3632_heads>
## Removing raster <r_lfp_3632_out>
## Removing vector <r_lfp_3632_heads>
## Removing vector <r_lfp_3632_lfp>
## Removing vector <r_lfp_3632_lfp2>
## Removing vector <r_lfp_3632_out>
## Removing vector <r_lfp_3632_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2448@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490865.994957026,2048342.8509187...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3632_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3632_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3632_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3632_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3632_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3632_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3632_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3632_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3632_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3632_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3632_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3632_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3632_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3632_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2448@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3632_flds>
## Removing raster <r_lfp_3632_heads>
## Removing raster <r_lfp_3632_out>
## Removing vector <r_lfp_3632_heads>
## Removing vector <r_lfp_3632_lfp>
## Removing vector <r_lfp_3632_lfp2>
## Removing vector <r_lfp_3632_out>
## Removing vector <r_lfp_3632_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488330.491952018,2044308.52840335 output=LfpNetwork_lfp_tmp_cumayasa_stream_2449
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2449@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488330.491952018,2044308.52840335...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3684_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3684_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3684_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3684_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3684_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3684_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3684_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3684_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3684_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3684_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3684_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3684_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3684_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3684_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2449@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3684_flds>
## Removing raster <r_lfp_3684_heads>
## Removing raster <r_lfp_3684_out>
## Removing vector <r_lfp_3684_heads>
## Removing vector <r_lfp_3684_lfp>
## Removing vector <r_lfp_3684_lfp2>
## Removing vector <r_lfp_3684_out>
## Removing vector <r_lfp_3684_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2449@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488330.491952018,2044308.52840335...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3684_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3684_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3684_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3684_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3684_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3684_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3684_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3684_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3684_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3684_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3684_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3684_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3684_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3684_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2449@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3684_flds>
## Removing raster <r_lfp_3684_heads>
## Removing raster <r_lfp_3684_out>
## Removing vector <r_lfp_3684_heads>
## Removing vector <r_lfp_3684_lfp>
## Removing vector <r_lfp_3684_lfp2>
## Removing vector <r_lfp_3684_out>
## Removing vector <r_lfp_3684_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487531.121546498,2042310.10238955 output=LfpNetwork_lfp_tmp_cumayasa_stream_2459
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2459@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487531.121546498,2042310.10238955...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3738_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3738_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3738_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3738_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3738_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3738_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3738_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3738_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3738_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3738_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3738_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3738_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3738_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3738_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2459@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3738_flds>
## Removing raster <r_lfp_3738_heads>
## Removing raster <r_lfp_3738_out>
## Removing vector <r_lfp_3738_heads>
## Removing vector <r_lfp_3738_lfp>
## Removing vector <r_lfp_3738_lfp2>
## Removing vector <r_lfp_3738_out>
## Removing vector <r_lfp_3738_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2459@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487531.121546498,2042310.10238955...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3738_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3738_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3738_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3738_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3738_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3738_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3738_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3738_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3738_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3738_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3738_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3738_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3738_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3738_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2459@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3738_flds>
## Removing raster <r_lfp_3738_heads>
## Removing raster <r_lfp_3738_out>
## Removing vector <r_lfp_3738_heads>
## Removing vector <r_lfp_3738_lfp>
## Removing vector <r_lfp_3738_lfp2>
## Removing vector <r_lfp_3738_out>
## Removing vector <r_lfp_3738_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487456.18057098,2042809.708893 output=LfpNetwork_lfp_tmp_cumayasa_stream_2460
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487456.18057098,2042809.708893...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3792_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3792_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3792_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3792_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3792_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3792_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3792_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3792_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_3792_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3792_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3792_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_3792_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3792_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3792_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3792_flds>
## Removing raster <r_lfp_3792_heads>
## Removing raster <r_lfp_3792_out>
## Removing vector <r_lfp_3792_heads>
## Removing vector <r_lfp_3792_lfp>
## Removing vector <r_lfp_3792_lfp2>
## Removing vector <r_lfp_3792_out>
## Removing vector <r_lfp_3792_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487456.18057098,2042809.708893...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3792_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3792_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3792_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3792_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3792_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3792_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3792_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3792_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_3792_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3792_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3792_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_3792_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3792_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3792_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3792_flds>
## Removing raster <r_lfp_3792_heads>
## Removing raster <r_lfp_3792_out>
## Removing vector <r_lfp_3792_heads>
## Removing vector <r_lfp_3792_lfp>
## Removing vector <r_lfp_3792_lfp2>
## Removing vector <r_lfp_3792_out>
## Removing vector <r_lfp_3792_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2460 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2460> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2460> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2460 output=LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2460>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487581.082196843,2043671.53011145 output=LfpNetwork_lfp_tmp_cumayasa_stream_2463
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2463@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487581.082196843,2043671.53011145...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3863_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3863_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3863_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3863_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3863_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3863_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3863_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3863_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3863_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3863_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3863_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3863_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3863_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3863_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2463@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3863_flds>
## Removing raster <r_lfp_3863_heads>
## Removing raster <r_lfp_3863_out>
## Removing vector <r_lfp_3863_heads>
## Removing vector <r_lfp_3863_lfp>
## Removing vector <r_lfp_3863_lfp2>
## Removing vector <r_lfp_3863_out>
## Removing vector <r_lfp_3863_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2463@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487581.082196843,2043671.53011145...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3863_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3863_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3863_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3863_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3863_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3863_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3863_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3863_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_3863_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3863_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3863_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_3863_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3863_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_3863_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2463@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3863_flds>
## Removing raster <r_lfp_3863_heads>
## Removing raster <r_lfp_3863_out>
## Removing vector <r_lfp_3863_heads>
## Removing vector <r_lfp_3863_lfp>
## Removing vector <r_lfp_3863_lfp2>
## Removing vector <r_lfp_3863_out>
## Removing vector <r_lfp_3863_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489879.272112712,2039474.83548247 output=LfpNetwork_lfp_tmp_cumayasa_stream_2464
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489879.272112712,2039474.83548247...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3917_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3917_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3917_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3917_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3917_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3917_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3917_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3917_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_3917_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3917_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3917_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_3917_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3917_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3917_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3917_flds>
## Removing raster <r_lfp_3917_heads>
## Removing raster <r_lfp_3917_out>
## Removing vector <r_lfp_3917_heads>
## Removing vector <r_lfp_3917_lfp>
## Removing vector <r_lfp_3917_lfp2>
## Removing vector <r_lfp_3917_out>
## Removing vector <r_lfp_3917_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489879.272112712,2039474.83548247...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3917_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3917_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3917_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3917_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3917_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3917_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3917_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3917_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_3917_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3917_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3917_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_3917_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3917_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3917_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3917_flds>
## Removing raster <r_lfp_3917_heads>
## Removing raster <r_lfp_3917_out>
## Removing vector <r_lfp_3917_heads>
## Removing vector <r_lfp_3917_lfp>
## Removing vector <r_lfp_3917_lfp2>
## Removing vector <r_lfp_3917_out>
## Removing vector <r_lfp_3917_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2464 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2464> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2464> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2464 output=LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2464>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490516.270404611,2039025.18962936 output=LfpNetwork_lfp_tmp_cumayasa_stream_2469
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490516.270404611,2039025.18962936...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3990_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3990_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3990_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3990_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3990_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3990_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3990_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3990_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_3990_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3990_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3990_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_3990_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3990_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3990_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3990_flds>
## Removing raster <r_lfp_3990_heads>
## Removing raster <r_lfp_3990_out>
## Removing vector <r_lfp_3990_heads>
## Removing vector <r_lfp_3990_lfp>
## Removing vector <r_lfp_3990_lfp2>
## Removing vector <r_lfp_3990_out>
## Removing vector <r_lfp_3990_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490516.270404611,2039025.18962936...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_3990_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_3990_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_3990_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3990_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_3990_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_3990_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_3990_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3990_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_3990_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_3990_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3990_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_3990_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_3990_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_3990_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_3990_flds>
## Removing raster <r_lfp_3990_heads>
## Removing raster <r_lfp_3990_out>
## Removing vector <r_lfp_3990_heads>
## Removing vector <r_lfp_3990_lfp>
## Removing vector <r_lfp_3990_lfp2>
## Removing vector <r_lfp_3990_out>
## Removing vector <r_lfp_3990_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2469 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2469> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2469> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2469 output=LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2469>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489866.781950126,2046082.13149059 output=LfpNetwork_lfp_tmp_cumayasa_stream_2471
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2471@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489866.781950126,2046082.13149059...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4063_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4063_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4063_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4063_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4063_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4063_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4063_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4063_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4063_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4063_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4063_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4063_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4063_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4063_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2471@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4063_flds>
## Removing raster <r_lfp_4063_heads>
## Removing raster <r_lfp_4063_out>
## Removing vector <r_lfp_4063_heads>
## Removing vector <r_lfp_4063_lfp>
## Removing vector <r_lfp_4063_lfp2>
## Removing vector <r_lfp_4063_out>
## Removing vector <r_lfp_4063_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2471@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489866.781950126,2046082.13149059...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4063_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4063_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4063_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4063_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4063_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4063_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4063_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4063_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4063_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4063_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4063_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4063_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4063_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4063_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2471@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4063_flds>
## Removing raster <r_lfp_4063_heads>
## Removing raster <r_lfp_4063_out>
## Removing vector <r_lfp_4063_heads>
## Removing vector <r_lfp_4063_lfp>
## Removing vector <r_lfp_4063_lfp2>
## Removing vector <r_lfp_4063_out>
## Removing vector <r_lfp_4063_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490703.622843405,2038850.32735315 output=LfpNetwork_lfp_tmp_cumayasa_stream_2472
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490703.622843405,2038850.32735315...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4119_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4119_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4119_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4119_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4119_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4119_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4119_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_4119_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_4119_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4119_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4119_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_4119_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4119_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_4119_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4119_flds>
## Removing raster <r_lfp_4119_heads>
## Removing raster <r_lfp_4119_out>
## Removing vector <r_lfp_4119_heads>
## Removing vector <r_lfp_4119_lfp>
## Removing vector <r_lfp_4119_lfp2>
## Removing vector <r_lfp_4119_out>
## Removing vector <r_lfp_4119_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490703.622843405,2038850.32735315...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4119_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4119_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4119_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4119_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4119_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4119_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4119_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_4119_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_4119_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4119_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4119_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_4119_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4119_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_4119_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4119_flds>
## Removing raster <r_lfp_4119_heads>
## Removing raster <r_lfp_4119_out>
## Removing vector <r_lfp_4119_heads>
## Removing vector <r_lfp_4119_lfp>
## Removing vector <r_lfp_4119_lfp2>
## Removing vector <r_lfp_4119_out>
## Removing vector <r_lfp_4119_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2472 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2472> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2472> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2472 output=LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2472>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489254.7639834,2045857.30856404 output=LfpNetwork_lfp_tmp_cumayasa_stream_2474
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2474@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489254.7639834,2045857.30856404...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4192_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4192_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4192_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4192_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4192_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4192_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4192_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4192_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4192_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4192_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4192_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4192_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4192_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4192_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2474@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4192_flds>
## Removing raster <r_lfp_4192_heads>
## Removing raster <r_lfp_4192_out>
## Removing vector <r_lfp_4192_heads>
## Removing vector <r_lfp_4192_lfp>
## Removing vector <r_lfp_4192_lfp2>
## Removing vector <r_lfp_4192_out>
## Removing vector <r_lfp_4192_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2474@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489254.7639834,2045857.30856404...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4192_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4192_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4192_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4192_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4192_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4192_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4192_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4192_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4192_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4192_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4192_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4192_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4192_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4192_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2474@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4192_flds>
## Removing raster <r_lfp_4192_heads>
## Removing raster <r_lfp_4192_out>
## Removing vector <r_lfp_4192_heads>
## Removing vector <r_lfp_4192_lfp>
## Removing vector <r_lfp_4192_lfp2>
## Removing vector <r_lfp_4192_out>
## Removing vector <r_lfp_4192_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488692.706667019,2045145.36929662 output=LfpNetwork_lfp_tmp_cumayasa_stream_2475
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2475@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488692.706667019,2045145.36929662...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4251_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4251_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4251_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4251_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4251_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4251_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4251_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4251_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4251_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4251_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4251_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4251_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4251_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4251_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2475@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4251_flds>
## Removing raster <r_lfp_4251_heads>
## Removing raster <r_lfp_4251_out>
## Removing vector <r_lfp_4251_heads>
## Removing vector <r_lfp_4251_lfp>
## Removing vector <r_lfp_4251_lfp2>
## Removing vector <r_lfp_4251_out>
## Removing vector <r_lfp_4251_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2475@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488692.706667019,2045145.36929662...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4251_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4251_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4251_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4251_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4251_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4251_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4251_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4251_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4251_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4251_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4251_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4251_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4251_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4251_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2475@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4251_flds>
## Removing raster <r_lfp_4251_heads>
## Removing raster <r_lfp_4251_out>
## Removing vector <r_lfp_4251_heads>
## Removing vector <r_lfp_4251_lfp>
## Removing vector <r_lfp_4251_lfp2>
## Removing vector <r_lfp_4251_out>
## Removing vector <r_lfp_4251_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488655.23617926,2040748.83206626 output=LfpNetwork_lfp_tmp_cumayasa_stream_2476
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2476@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488655.23617926,2040748.83206626...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4311_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4311_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4311_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4311_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4311_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4311_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4311_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4311_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4311_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4311_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4311_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4311_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4311_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4311_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2476@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4311_flds>
## Removing raster <r_lfp_4311_heads>
## Removing raster <r_lfp_4311_out>
## Removing vector <r_lfp_4311_heads>
## Removing vector <r_lfp_4311_lfp>
## Removing vector <r_lfp_4311_lfp2>
## Removing vector <r_lfp_4311_out>
## Removing vector <r_lfp_4311_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2476@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488655.23617926,2040748.83206626...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4311_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4311_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4311_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4311_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4311_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4311_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4311_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4311_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4311_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4311_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4311_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4311_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4311_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4311_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2476@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4311_flds>
## Removing raster <r_lfp_4311_heads>
## Removing raster <r_lfp_4311_out>
## Removing vector <r_lfp_4311_heads>
## Removing vector <r_lfp_4311_lfp>
## Removing vector <r_lfp_4311_lfp2>
## Removing vector <r_lfp_4311_out>
## Removing vector <r_lfp_4311_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490528.760567197,2037913.56515919 output=LfpNetwork_lfp_tmp_cumayasa_stream_2478
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2478@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490528.760567197,2037913.56515919...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4365_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4365_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4365_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4365_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4365_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4365_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4365_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4365_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4365_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4365_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4365_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4365_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4365_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4365_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2478@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4365_flds>
## Removing raster <r_lfp_4365_heads>
## Removing raster <r_lfp_4365_out>
## Removing vector <r_lfp_4365_heads>
## Removing vector <r_lfp_4365_lfp>
## Removing vector <r_lfp_4365_lfp2>
## Removing vector <r_lfp_4365_out>
## Removing vector <r_lfp_4365_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2478@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490528.760567197,2037913.56515919...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4365_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4365_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4365_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4365_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4365_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4365_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4365_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4365_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4365_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4365_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4365_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4365_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4365_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4365_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2478@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4365_flds>
## Removing raster <r_lfp_4365_heads>
## Removing raster <r_lfp_4365_out>
## Removing vector <r_lfp_4365_heads>
## Removing vector <r_lfp_4365_lfp>
## Removing vector <r_lfp_4365_lfp2>
## Removing vector <r_lfp_4365_out>
## Removing vector <r_lfp_4365_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488542.824715984,2045082.91848369 output=LfpNetwork_lfp_tmp_cumayasa_stream_2481
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2481@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488542.824715984,2045082.91848369...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4415_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4415_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4415_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4415_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4415_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4415_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4415_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4415_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4415_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4415_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4415_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4415_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4415_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4415_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2481@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4415_flds>
## Removing raster <r_lfp_4415_heads>
## Removing raster <r_lfp_4415_out>
## Removing vector <r_lfp_4415_heads>
## Removing vector <r_lfp_4415_lfp>
## Removing vector <r_lfp_4415_lfp2>
## Removing vector <r_lfp_4415_out>
## Removing vector <r_lfp_4415_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2481@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488542.824715984,2045082.91848369...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4415_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4415_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4415_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4415_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4415_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4415_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4415_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4415_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4415_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4415_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4415_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4415_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4415_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4415_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2481@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4415_flds>
## Removing raster <r_lfp_4415_heads>
## Removing raster <r_lfp_4415_out>
## Removing vector <r_lfp_4415_heads>
## Removing vector <r_lfp_4415_lfp>
## Removing vector <r_lfp_4415_lfp2>
## Removing vector <r_lfp_4415_out>
## Removing vector <r_lfp_4415_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490591.211380128,2037713.72255781 output=LfpNetwork_lfp_tmp_cumayasa_stream_2483
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2483@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490591.211380128,2037713.72255781...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4470_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4470_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4470_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4470_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4470_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4470_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4470_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4470_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4470_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4470_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4470_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4470_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4470_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4470_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2483@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4470_flds>
## Removing raster <r_lfp_4470_heads>
## Removing raster <r_lfp_4470_out>
## Removing vector <r_lfp_4470_heads>
## Removing vector <r_lfp_4470_lfp>
## Removing vector <r_lfp_4470_lfp2>
## Removing vector <r_lfp_4470_out>
## Removing vector <r_lfp_4470_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2483@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490591.211380128,2037713.72255781...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4470_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4470_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4470_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4470_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4470_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4470_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4470_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4470_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4470_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4470_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4470_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4470_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4470_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4470_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2483@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4470_flds>
## Removing raster <r_lfp_4470_heads>
## Removing raster <r_lfp_4470_out>
## Removing vector <r_lfp_4470_heads>
## Removing vector <r_lfp_4470_lfp>
## Removing vector <r_lfp_4470_lfp2>
## Removing vector <r_lfp_4470_out>
## Removing vector <r_lfp_4470_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488255.5509765,2044520.86116731 output=LfpNetwork_lfp_tmp_cumayasa_stream_2485
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2485@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488255.5509765,2044520.86116731...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4526_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4526_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4526_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4526_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4526_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4526_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4526_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4526_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4526_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4526_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4526_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4526_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4526_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4526_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2485@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4526_flds>
## Removing raster <r_lfp_4526_heads>
## Removing raster <r_lfp_4526_out>
## Removing vector <r_lfp_4526_heads>
## Removing vector <r_lfp_4526_lfp>
## Removing vector <r_lfp_4526_lfp2>
## Removing vector <r_lfp_4526_out>
## Removing vector <r_lfp_4526_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2485@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488255.5509765,2044520.86116731...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4526_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4526_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4526_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4526_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4526_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4526_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4526_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4526_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4526_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4526_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4526_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4526_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4526_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4526_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2485@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4526_flds>
## Removing raster <r_lfp_4526_heads>
## Removing raster <r_lfp_4526_out>
## Removing vector <r_lfp_4526_heads>
## Removing vector <r_lfp_4526_lfp>
## Removing vector <r_lfp_4526_lfp2>
## Removing vector <r_lfp_4526_out>
## Removing vector <r_lfp_4526_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491278.170322372,2036602.09808763 output=LfpNetwork_lfp_tmp_cumayasa_stream_2492
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491278.170322372,2036602.09808763...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4579_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4579_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4579_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4579_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4579_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4579_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4579_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_4579_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_4579_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4579_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4579_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_4579_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4579_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_4579_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4579_flds>
## Removing raster <r_lfp_4579_heads>
## Removing raster <r_lfp_4579_out>
## Removing vector <r_lfp_4579_heads>
## Removing vector <r_lfp_4579_lfp>
## Removing vector <r_lfp_4579_lfp2>
## Removing vector <r_lfp_4579_out>
## Removing vector <r_lfp_4579_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491278.170322372,2036602.09808763...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4579_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4579_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4579_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4579_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4579_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4579_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4579_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_4579_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_4579_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4579_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4579_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_4579_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4579_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_4579_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4579_flds>
## Removing raster <r_lfp_4579_heads>
## Removing raster <r_lfp_4579_out>
## Removing vector <r_lfp_4579_heads>
## Removing vector <r_lfp_4579_lfp>
## Removing vector <r_lfp_4579_lfp2>
## Removing vector <r_lfp_4579_out>
## Removing vector <r_lfp_4579_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2492 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2492> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2492> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2492 output=LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2492>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487943.296911844,2041260.9287323 output=LfpNetwork_lfp_tmp_cumayasa_stream_2509
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2509@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487943.296911844,2041260.9287323...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4648_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4648_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4648_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4648_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4648_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4648_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4648_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4648_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4648_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4648_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4648_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4648_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4648_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4648_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2509@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4648_flds>
## Removing raster <r_lfp_4648_heads>
## Removing raster <r_lfp_4648_out>
## Removing vector <r_lfp_4648_heads>
## Removing vector <r_lfp_4648_lfp>
## Removing vector <r_lfp_4648_lfp2>
## Removing vector <r_lfp_4648_out>
## Removing vector <r_lfp_4648_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2509@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487943.296911844,2041260.9287323...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4648_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4648_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4648_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4648_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4648_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4648_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4648_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4648_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4648_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4648_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4648_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4648_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4648_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4648_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2509@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4648_flds>
## Removing raster <r_lfp_4648_heads>
## Removing raster <r_lfp_4648_out>
## Removing vector <r_lfp_4648_heads>
## Removing vector <r_lfp_4648_lfp>
## Removing vector <r_lfp_4648_lfp2>
## Removing vector <r_lfp_4648_out>
## Removing vector <r_lfp_4648_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490878.485119612,2038388.19133746 output=LfpNetwork_lfp_tmp_cumayasa_stream_2511
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2511@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490878.485119612,2038388.19133746...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4702_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4702_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4702_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4702_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4702_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4702_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4702_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4702_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4702_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4702_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4702_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4702_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4702_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4702_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2511@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4702_flds>
## Removing raster <r_lfp_4702_heads>
## Removing raster <r_lfp_4702_out>
## Removing vector <r_lfp_4702_heads>
## Removing vector <r_lfp_4702_lfp>
## Removing vector <r_lfp_4702_lfp2>
## Removing vector <r_lfp_4702_out>
## Removing vector <r_lfp_4702_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2511@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490878.485119612,2038388.19133746...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4702_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4702_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4702_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4702_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4702_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4702_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4702_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4702_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4702_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4702_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4702_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4702_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4702_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4702_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2511@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4702_flds>
## Removing raster <r_lfp_4702_heads>
## Removing raster <r_lfp_4702_out>
## Removing vector <r_lfp_4702_heads>
## Removing vector <r_lfp_4702_lfp>
## Removing vector <r_lfp_4702_lfp2>
## Removing vector <r_lfp_4702_out>
## Removing vector <r_lfp_4702_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488305.511626845,2044370.97921628 output=LfpNetwork_lfp_tmp_cumayasa_stream_2515
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2515@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488305.511626845,2044370.97921628...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4756_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4756_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4756_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4756_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4756_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4756_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4756_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4756_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4756_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4756_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4756_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4756_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4756_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4756_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2515@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4756_flds>
## Removing raster <r_lfp_4756_heads>
## Removing raster <r_lfp_4756_out>
## Removing vector <r_lfp_4756_heads>
## Removing vector <r_lfp_4756_lfp>
## Removing vector <r_lfp_4756_lfp2>
## Removing vector <r_lfp_4756_out>
## Removing vector <r_lfp_4756_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2515@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488305.511626845,2044370.97921628...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4756_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4756_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4756_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4756_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4756_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4756_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4756_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4756_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4756_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4756_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4756_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4756_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4756_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4756_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2515@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4756_flds>
## Removing raster <r_lfp_4756_heads>
## Removing raster <r_lfp_4756_out>
## Removing vector <r_lfp_4756_heads>
## Removing vector <r_lfp_4756_lfp>
## Removing vector <r_lfp_4756_lfp2>
## Removing vector <r_lfp_4756_out>
## Removing vector <r_lfp_4756_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490728.603168577,2036989.2931278 output=LfpNetwork_lfp_tmp_cumayasa_stream_2516
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2516@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490728.603168577,2036989.2931278...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4810_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4810_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4810_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4810_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4810_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4810_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4810_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4810_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4810_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4810_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4810_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4810_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4810_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4810_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2516@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4810_flds>
## Removing raster <r_lfp_4810_heads>
## Removing raster <r_lfp_4810_out>
## Removing vector <r_lfp_4810_heads>
## Removing vector <r_lfp_4810_lfp>
## Removing vector <r_lfp_4810_lfp2>
## Removing vector <r_lfp_4810_out>
## Removing vector <r_lfp_4810_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2516@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490728.603168577,2036989.2931278...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4810_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4810_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4810_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4810_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4810_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4810_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4810_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4810_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4810_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4810_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4810_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4810_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4810_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4810_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2516@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4810_flds>
## Removing raster <r_lfp_4810_heads>
## Removing raster <r_lfp_4810_out>
## Removing vector <r_lfp_4810_heads>
## Removing vector <r_lfp_4810_lfp>
## Removing vector <r_lfp_4810_lfp2>
## Removing vector <r_lfp_4810_out>
## Removing vector <r_lfp_4810_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487631.042847188,2043659.03994886 output=LfpNetwork_lfp_tmp_cumayasa_stream_2527
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2527@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487631.042847188,2043659.03994886...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4862_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4862_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4862_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4862_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4862_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4862_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4862_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4862_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4862_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4862_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4862_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4862_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4862_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4862_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2527@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4862_flds>
## Removing raster <r_lfp_4862_heads>
## Removing raster <r_lfp_4862_out>
## Removing vector <r_lfp_4862_heads>
## Removing vector <r_lfp_4862_lfp>
## Removing vector <r_lfp_4862_lfp2>
## Removing vector <r_lfp_4862_out>
## Removing vector <r_lfp_4862_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2527@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487631.042847188,2043659.03994886...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4862_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4862_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4862_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4862_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4862_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4862_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4862_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4862_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4862_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4862_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4862_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4862_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4862_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4862_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2527@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4862_flds>
## Removing raster <r_lfp_4862_heads>
## Removing raster <r_lfp_4862_out>
## Removing vector <r_lfp_4862_heads>
## Removing vector <r_lfp_4862_lfp>
## Removing vector <r_lfp_4862_lfp2>
## Removing vector <r_lfp_4862_out>
## Removing vector <r_lfp_4862_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487718.473985292,2043409.23669714 output=LfpNetwork_lfp_tmp_cumayasa_stream_2530
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2530@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487718.473985292,2043409.23669714...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4916_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4916_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4916_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4916_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4916_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4916_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4916_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4916_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4916_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4916_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4916_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4916_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4916_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4916_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2530@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4916_flds>
## Removing raster <r_lfp_4916_heads>
## Removing raster <r_lfp_4916_out>
## Removing vector <r_lfp_4916_heads>
## Removing vector <r_lfp_4916_lfp>
## Removing vector <r_lfp_4916_lfp2>
## Removing vector <r_lfp_4916_out>
## Removing vector <r_lfp_4916_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2530@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487718.473985292,2043409.23669714...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4916_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4916_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4916_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4916_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4916_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4916_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4916_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4916_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4916_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4916_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4916_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4916_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4916_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4916_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2530@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4916_flds>
## Removing raster <r_lfp_4916_heads>
## Removing raster <r_lfp_4916_out>
## Removing vector <r_lfp_4916_heads>
## Removing vector <r_lfp_4916_lfp>
## Removing vector <r_lfp_4916_lfp2>
## Removing vector <r_lfp_4916_out>
## Removing vector <r_lfp_4916_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487643.533009774,2042147.73027592 output=LfpNetwork_lfp_tmp_cumayasa_stream_2534
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2534@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487643.533009774,2042147.73027592...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4968_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4968_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4968_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4968_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4968_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4968_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4968_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4968_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4968_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4968_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4968_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4968_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4968_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4968_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2534@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4968_flds>
## Removing raster <r_lfp_4968_heads>
## Removing raster <r_lfp_4968_out>
## Removing vector <r_lfp_4968_heads>
## Removing vector <r_lfp_4968_lfp>
## Removing vector <r_lfp_4968_lfp2>
## Removing vector <r_lfp_4968_out>
## Removing vector <r_lfp_4968_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2534@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487643.533009774,2042147.73027592...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_4968_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_4968_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_4968_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4968_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_4968_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_4968_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_4968_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4968_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_4968_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_4968_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4968_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_4968_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_4968_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_4968_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2534@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_4968_flds>
## Removing raster <r_lfp_4968_heads>
## Removing raster <r_lfp_4968_out>
## Removing vector <r_lfp_4968_heads>
## Removing vector <r_lfp_4968_lfp>
## Removing vector <r_lfp_4968_lfp2>
## Removing vector <r_lfp_4968_out>
## Removing vector <r_lfp_4968_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488005.747724775,2041673.10409765 output=LfpNetwork_lfp_tmp_cumayasa_stream_2535
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2535@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488005.747724775,2041673.10409765...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5024_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5024_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5024_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5024_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5024_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5024_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5024_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5024_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5024_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5024_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5024_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5024_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5024_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5024_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2535@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5024_flds>
## Removing raster <r_lfp_5024_heads>
## Removing raster <r_lfp_5024_out>
## Removing vector <r_lfp_5024_heads>
## Removing vector <r_lfp_5024_lfp>
## Removing vector <r_lfp_5024_lfp2>
## Removing vector <r_lfp_5024_out>
## Removing vector <r_lfp_5024_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2535@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488005.747724775,2041673.10409765...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5024_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5024_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5024_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5024_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5024_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5024_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5024_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5024_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5024_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5024_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5024_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5024_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5024_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5024_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2535@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5024_flds>
## Removing raster <r_lfp_5024_heads>
## Removing raster <r_lfp_5024_out>
## Removing vector <r_lfp_5024_heads>
## Removing vector <r_lfp_5024_lfp>
## Removing vector <r_lfp_5024_lfp2>
## Removing vector <r_lfp_5024_out>
## Removing vector <r_lfp_5024_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490703.622843405,2036090.00142159 output=LfpNetwork_lfp_tmp_cumayasa_stream_2536
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2536@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490703.622843405,2036090.00142159...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5076_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5076_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5076_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5076_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5076_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5076_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5076_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5076_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5076_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5076_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5076_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5076_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5076_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5076_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2536@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5076_flds>
## Removing raster <r_lfp_5076_heads>
## Removing raster <r_lfp_5076_out>
## Removing vector <r_lfp_5076_heads>
## Removing vector <r_lfp_5076_lfp>
## Removing vector <r_lfp_5076_lfp2>
## Removing vector <r_lfp_5076_out>
## Removing vector <r_lfp_5076_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2536@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490703.622843405,2036090.00142159...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5076_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5076_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5076_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5076_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5076_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5076_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5076_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5076_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5076_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5076_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5076_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5076_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5076_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5076_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2536@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5076_flds>
## Removing raster <r_lfp_5076_heads>
## Removing raster <r_lfp_5076_out>
## Removing vector <r_lfp_5076_heads>
## Removing vector <r_lfp_5076_lfp>
## Removing vector <r_lfp_5076_lfp2>
## Removing vector <r_lfp_5076_out>
## Removing vector <r_lfp_5076_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490803.544144095,2036127.47190935 output=LfpNetwork_lfp_tmp_cumayasa_stream_2537
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2537@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490803.544144095,2036127.47190935...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5126_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5126_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5126_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5126_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5126_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5126_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5126_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5126_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5126_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5126_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5126_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5126_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5126_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5126_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2537@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5126_flds>
## Removing raster <r_lfp_5126_heads>
## Removing raster <r_lfp_5126_out>
## Removing vector <r_lfp_5126_heads>
## Removing vector <r_lfp_5126_lfp>
## Removing vector <r_lfp_5126_lfp2>
## Removing vector <r_lfp_5126_out>
## Removing vector <r_lfp_5126_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2537@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490803.544144095,2036127.47190935...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5126_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5126_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5126_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5126_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5126_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5126_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5126_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5126_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5126_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5126_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5126_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5126_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5126_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5126_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2537@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5126_flds>
## Removing raster <r_lfp_5126_heads>
## Removing raster <r_lfp_5126_out>
## Removing vector <r_lfp_5126_heads>
## Removing vector <r_lfp_5126_lfp>
## Removing vector <r_lfp_5126_lfp2>
## Removing vector <r_lfp_5126_out>
## Removing vector <r_lfp_5126_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487980.767399603,2041698.08442282 output=LfpNetwork_lfp_tmp_cumayasa_stream_2539
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2539@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487980.767399603,2041698.08442282...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5182_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5182_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5182_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5182_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5182_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5182_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5182_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5182_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5182_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5182_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5182_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5182_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5182_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5182_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2539@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5182_flds>
## Removing raster <r_lfp_5182_heads>
## Removing raster <r_lfp_5182_out>
## Removing vector <r_lfp_5182_heads>
## Removing vector <r_lfp_5182_lfp>
## Removing vector <r_lfp_5182_lfp2>
## Removing vector <r_lfp_5182_out>
## Removing vector <r_lfp_5182_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2539@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487980.767399603,2041698.08442282...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5182_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5182_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5182_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5182_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5182_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5182_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5182_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5182_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5182_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5182_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5182_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5182_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5182_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5182_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2539@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5182_flds>
## Removing raster <r_lfp_5182_heads>
## Removing raster <r_lfp_5182_out>
## Removing vector <r_lfp_5182_heads>
## Removing vector <r_lfp_5182_lfp>
## Removing vector <r_lfp_5182_lfp2>
## Removing vector <r_lfp_5182_out>
## Removing vector <r_lfp_5182_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488580.295203743,2041073.57629351 output=LfpNetwork_lfp_tmp_cumayasa_stream_2541
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2541@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488580.295203743,2041073.57629351...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5236_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5236_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5236_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5236_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5236_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5236_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5236_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5236_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5236_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5236_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5236_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5236_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5236_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5236_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2541@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5236_flds>
## Removing raster <r_lfp_5236_heads>
## Removing raster <r_lfp_5236_out>
## Removing vector <r_lfp_5236_heads>
## Removing vector <r_lfp_5236_lfp>
## Removing vector <r_lfp_5236_lfp2>
## Removing vector <r_lfp_5236_out>
## Removing vector <r_lfp_5236_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2541@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488580.295203743,2041073.57629351...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5236_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5236_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5236_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5236_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5236_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5236_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5236_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5236_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5236_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5236_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5236_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5236_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5236_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5236_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2541@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5236_flds>
## Removing raster <r_lfp_5236_heads>
## Removing raster <r_lfp_5236_out>
## Removing vector <r_lfp_5236_heads>
## Removing vector <r_lfp_5236_lfp>
## Removing vector <r_lfp_5236_lfp2>
## Removing vector <r_lfp_5236_out>
## Removing vector <r_lfp_5236_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488680.216504433,2040898.7140173 output=LfpNetwork_lfp_tmp_cumayasa_stream_2544
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2544@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488680.216504433,2040898.7140173...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5360_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5360_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5360_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5360_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5360_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5360_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5360_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5360_path@PERMANENT>
## 0 lines broken
## Building topology for vector map <r_lfp_5360_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5360_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5360_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5360_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5360_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5360_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2544@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5360_flds>
## Removing raster <r_lfp_5360_heads>
## Removing raster <r_lfp_5360_out>
## Removing vector <r_lfp_5360_heads>
## Removing vector <r_lfp_5360_lfp>
## Removing vector <r_lfp_5360_lfp2>
## Removing vector <r_lfp_5360_out>
## Removing vector <r_lfp_5360_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2544@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488680.216504433,2040898.7140173...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5360_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5360_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5360_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5360_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5360_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5360_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5360_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5360_path@PERMANENT>
## 0 lines broken
## Building topology for vector map <r_lfp_5360_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5360_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5360_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5360_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5360_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5360_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2544@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5360_flds>
## Removing raster <r_lfp_5360_heads>
## Removing raster <r_lfp_5360_out>
## Removing vector <r_lfp_5360_heads>
## Removing vector <r_lfp_5360_lfp>
## Removing vector <r_lfp_5360_lfp2>
## Removing vector <r_lfp_5360_out>
## Removing vector <r_lfp_5360_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491340.621135303,2036502.17678694 output=LfpNetwork_lfp_tmp_cumayasa_stream_2547
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2547@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491340.621135303,2036502.17678694...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5416_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5416_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5416_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5416_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5416_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5416_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5416_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5416_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5416_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5416_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5416_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5416_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5416_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5416_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2547@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5416_flds>
## Removing raster <r_lfp_5416_heads>
## Removing raster <r_lfp_5416_out>
## Removing vector <r_lfp_5416_heads>
## Removing vector <r_lfp_5416_lfp>
## Removing vector <r_lfp_5416_lfp2>
## Removing vector <r_lfp_5416_out>
## Removing vector <r_lfp_5416_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2547@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491340.621135303,2036502.17678694...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5416_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5416_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5416_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5416_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5416_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5416_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5416_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5416_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5416_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5416_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5416_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5416_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5416_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5416_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2547@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5416_flds>
## Removing raster <r_lfp_5416_heads>
## Removing raster <r_lfp_5416_out>
## Removing vector <r_lfp_5416_heads>
## Removing vector <r_lfp_5416_lfp>
## Removing vector <r_lfp_5416_lfp2>
## Removing vector <r_lfp_5416_out>
## Removing vector <r_lfp_5416_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490753.58349375,2036065.02109642 output=LfpNetwork_lfp_tmp_cumayasa_stream_2548
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2548@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490753.58349375,2036065.02109642...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5483_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5483_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5483_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5483_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5483_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5483_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5483_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5483_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5483_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5483_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5483_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5483_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5483_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5483_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2548@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5483_flds>
## Removing raster <r_lfp_5483_heads>
## Removing raster <r_lfp_5483_out>
## Removing vector <r_lfp_5483_heads>
## Removing vector <r_lfp_5483_lfp>
## Removing vector <r_lfp_5483_lfp2>
## Removing vector <r_lfp_5483_out>
## Removing vector <r_lfp_5483_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2548@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490753.58349375,2036065.02109642...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5483_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5483_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5483_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5483_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5483_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5483_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5483_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5483_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5483_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5483_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5483_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5483_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5483_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5483_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2548@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5483_flds>
## Removing raster <r_lfp_5483_heads>
## Removing raster <r_lfp_5483_out>
## Removing vector <r_lfp_5483_heads>
## Removing vector <r_lfp_5483_lfp>
## Removing vector <r_lfp_5483_lfp2>
## Removing vector <r_lfp_5483_out>
## Removing vector <r_lfp_5483_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488979.980406503,2040524.00913971 output=LfpNetwork_lfp_tmp_cumayasa_stream_2553
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2553@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488979.980406503,2040524.00913971...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5538_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5538_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5538_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5538_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5538_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5538_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5538_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5538_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5538_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5538_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5538_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5538_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5538_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5538_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2553@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5538_flds>
## Removing raster <r_lfp_5538_heads>
## Removing raster <r_lfp_5538_out>
## Removing vector <r_lfp_5538_heads>
## Removing vector <r_lfp_5538_lfp>
## Removing vector <r_lfp_5538_lfp2>
## Removing vector <r_lfp_5538_out>
## Removing vector <r_lfp_5538_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2553@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488979.980406503,2040524.00913971...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5538_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5538_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5538_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5538_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5538_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5538_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5538_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5538_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5538_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5538_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5538_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5538_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5538_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5538_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2553@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5538_flds>
## Removing raster <r_lfp_5538_heads>
## Removing raster <r_lfp_5538_out>
## Removing vector <r_lfp_5538_heads>
## Removing vector <r_lfp_5538_lfp>
## Removing vector <r_lfp_5538_lfp2>
## Removing vector <r_lfp_5538_out>
## Removing vector <r_lfp_5538_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489654.44918616,2039986.9321485 output=LfpNetwork_lfp_tmp_cumayasa_stream_2554
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2554@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489654.44918616,2039986.9321485...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5592_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5592_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5592_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5592_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5592_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5592_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5592_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5592_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5592_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5592_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5592_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5592_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5592_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5592_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2554@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5592_flds>
## Removing raster <r_lfp_5592_heads>
## Removing raster <r_lfp_5592_out>
## Removing vector <r_lfp_5592_heads>
## Removing vector <r_lfp_5592_lfp>
## Removing vector <r_lfp_5592_lfp2>
## Removing vector <r_lfp_5592_out>
## Removing vector <r_lfp_5592_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2554@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489654.44918616,2039986.9321485...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5592_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5592_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5592_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5592_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5592_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5592_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5592_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5592_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5592_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5592_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5592_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5592_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5592_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5592_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2554@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5592_flds>
## Removing raster <r_lfp_5592_heads>
## Removing raster <r_lfp_5592_out>
## Removing vector <r_lfp_5592_heads>
## Removing vector <r_lfp_5592_lfp>
## Removing vector <r_lfp_5592_lfp2>
## Removing vector <r_lfp_5592_out>
## Removing vector <r_lfp_5592_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490541.250729783,2035852.68833246 output=LfpNetwork_lfp_tmp_cumayasa_stream_2555
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2555@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490541.250729783,2035852.68833246...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5648_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5648_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5648_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5648_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5648_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5648_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5648_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5648_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5648_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5648_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5648_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5648_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5648_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5648_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2555@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5648_flds>
## Removing raster <r_lfp_5648_heads>
## Removing raster <r_lfp_5648_out>
## Removing vector <r_lfp_5648_heads>
## Removing vector <r_lfp_5648_lfp>
## Removing vector <r_lfp_5648_lfp2>
## Removing vector <r_lfp_5648_out>
## Removing vector <r_lfp_5648_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2555@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490541.250729783,2035852.68833246...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5648_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5648_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5648_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5648_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5648_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5648_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5648_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5648_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5648_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5648_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5648_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5648_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5648_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5648_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2555@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5648_flds>
## Removing raster <r_lfp_5648_heads>
## Removing raster <r_lfp_5648_out>
## Removing vector <r_lfp_5648_heads>
## Removing vector <r_lfp_5648_lfp>
## Removing vector <r_lfp_5648_lfp2>
## Removing vector <r_lfp_5648_out>
## Removing vector <r_lfp_5648_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490578.721217542,2035965.09979573 output=LfpNetwork_lfp_tmp_cumayasa_stream_2557
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2557@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490578.721217542,2035965.09979573...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5702_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5702_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5702_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5702_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5702_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5702_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5702_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5702_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5702_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5702_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5702_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5702_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5702_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5702_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2557@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5702_flds>
## Removing raster <r_lfp_5702_heads>
## Removing raster <r_lfp_5702_out>
## Removing vector <r_lfp_5702_heads>
## Removing vector <r_lfp_5702_lfp>
## Removing vector <r_lfp_5702_lfp2>
## Removing vector <r_lfp_5702_out>
## Removing vector <r_lfp_5702_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2557@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490578.721217542,2035965.09979573...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5702_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5702_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5702_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5702_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5702_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5702_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5702_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5702_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5702_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5702_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5702_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5702_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5702_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5702_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2557@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5702_flds>
## Removing raster <r_lfp_5702_heads>
## Removing raster <r_lfp_5702_out>
## Removing vector <r_lfp_5702_heads>
## Removing vector <r_lfp_5702_lfp>
## Removing vector <r_lfp_5702_lfp2>
## Removing vector <r_lfp_5702_out>
## Removing vector <r_lfp_5702_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490054.13438892,2039100.13060488 output=LfpNetwork_lfp_tmp_cumayasa_stream_2558
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2558@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490054.13438892,2039100.13060488...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5758_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5758_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5758_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5758_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5758_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5758_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5758_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5758_path@PERMANENT>
## 0 lines broken
## Building topology for vector map <r_lfp_5758_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5758_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5758_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5758_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5758_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5758_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2558@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5758_flds>
## Removing raster <r_lfp_5758_heads>
## Removing raster <r_lfp_5758_out>
## Removing vector <r_lfp_5758_heads>
## Removing vector <r_lfp_5758_lfp>
## Removing vector <r_lfp_5758_lfp2>
## Removing vector <r_lfp_5758_out>
## Removing vector <r_lfp_5758_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2558@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490054.13438892,2039100.13060488...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5758_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5758_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5758_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5758_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5758_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5758_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5758_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5758_path@PERMANENT>
## 0 lines broken
## Building topology for vector map <r_lfp_5758_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5758_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5758_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5758_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5758_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5758_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2558@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5758_flds>
## Removing raster <r_lfp_5758_heads>
## Removing raster <r_lfp_5758_out>
## Removing vector <r_lfp_5758_heads>
## Removing vector <r_lfp_5758_lfp>
## Removing vector <r_lfp_5758_lfp2>
## Removing vector <r_lfp_5758_out>
## Removing vector <r_lfp_5758_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490990.896582888,2034840.98516297 output=LfpNetwork_lfp_tmp_cumayasa_stream_2562
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2562@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490990.896582888,2034840.98516297...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5812_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5812_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5812_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5812_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5812_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5812_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5812_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5812_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5812_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5812_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5812_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5812_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5812_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5812_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2562@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5812_flds>
## Removing raster <r_lfp_5812_heads>
## Removing raster <r_lfp_5812_out>
## Removing vector <r_lfp_5812_heads>
## Removing vector <r_lfp_5812_lfp>
## Removing vector <r_lfp_5812_lfp2>
## Removing vector <r_lfp_5812_out>
## Removing vector <r_lfp_5812_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2562@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490990.896582888,2034840.98516297...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5812_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5812_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5812_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5812_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5812_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5812_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5812_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5812_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_5812_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5812_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5812_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_5812_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5812_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_5812_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2562@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5812_flds>
## Removing raster <r_lfp_5812_heads>
## Removing raster <r_lfp_5812_out>
## Removing vector <r_lfp_5812_heads>
## Removing vector <r_lfp_5812_lfp>
## Removing vector <r_lfp_5812_lfp2>
## Removing vector <r_lfp_5812_out>
## Removing vector <r_lfp_5812_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=489954.21308823,2039574.75678316 output=LfpNetwork_lfp_tmp_cumayasa_stream_2563
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489954.21308823,2039574.75678316...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5866_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5866_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5866_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5866_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5866_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5866_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5866_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_5866_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_5866_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5866_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5866_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_5866_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5866_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_5866_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5866_flds>
## Removing raster <r_lfp_5866_heads>
## Removing raster <r_lfp_5866_out>
## Removing vector <r_lfp_5866_heads>
## Removing vector <r_lfp_5866_lfp>
## Removing vector <r_lfp_5866_lfp2>
## Removing vector <r_lfp_5866_out>
## Removing vector <r_lfp_5866_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 489954.21308823,2039574.75678316...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5866_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5866_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5866_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5866_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5866_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5866_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5866_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_5866_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_5866_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5866_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5866_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_5866_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5866_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_5866_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5866_flds>
## Removing raster <r_lfp_5866_heads>
## Removing raster <r_lfp_5866_out>
## Removing vector <r_lfp_5866_heads>
## Removing vector <r_lfp_5866_lfp>
## Removing vector <r_lfp_5866_lfp2>
## Removing vector <r_lfp_5866_out>
## Removing vector <r_lfp_5866_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2563 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2563> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2563> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2563 output=LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2563>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490915.955607371,2035215.69004056 output=LfpNetwork_lfp_tmp_cumayasa_stream_2577
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490915.955607371,2035215.69004056...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5935_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5935_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5935_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5935_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5935_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5935_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5935_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_5935_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_5935_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5935_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5935_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_5935_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5935_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_5935_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5935_flds>
## Removing raster <r_lfp_5935_heads>
## Removing raster <r_lfp_5935_out>
## Removing vector <r_lfp_5935_heads>
## Removing vector <r_lfp_5935_lfp>
## Removing vector <r_lfp_5935_lfp2>
## Removing vector <r_lfp_5935_out>
## Removing vector <r_lfp_5935_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490915.955607371,2035215.69004056...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_5935_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_5935_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_5935_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5935_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_5935_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_5935_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_5935_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_5935_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_5935_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_5935_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5935_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_5935_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_5935_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_5935_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_5935_flds>
## Removing raster <r_lfp_5935_heads>
## Removing raster <r_lfp_5935_out>
## Removing vector <r_lfp_5935_heads>
## Removing vector <r_lfp_5935_lfp>
## Removing vector <r_lfp_5935_lfp2>
## Removing vector <r_lfp_5935_out>
## Removing vector <r_lfp_5935_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2577 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2577> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2577> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2577 output=LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2577>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490641.172030473,2038000.99629729 output=LfpNetwork_lfp_tmp_cumayasa_stream_2578
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2578@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490641.172030473,2038000.99629729...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6004_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6004_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6004_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6004_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6004_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6004_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6004_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6004_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6004_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6004_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6004_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6004_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6004_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6004_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2578@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6004_flds>
## Removing raster <r_lfp_6004_heads>
## Removing raster <r_lfp_6004_out>
## Removing vector <r_lfp_6004_heads>
## Removing vector <r_lfp_6004_lfp>
## Removing vector <r_lfp_6004_lfp2>
## Removing vector <r_lfp_6004_out>
## Removing vector <r_lfp_6004_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2578@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490641.172030473,2038000.99629729...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6004_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6004_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6004_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6004_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6004_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6004_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6004_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6004_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6004_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6004_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6004_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6004_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6004_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6004_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2578@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6004_flds>
## Removing raster <r_lfp_6004_heads>
## Removing raster <r_lfp_6004_out>
## Removing vector <r_lfp_6004_heads>
## Removing vector <r_lfp_6004_lfp>
## Removing vector <r_lfp_6004_lfp2>
## Removing vector <r_lfp_6004_out>
## Removing vector <r_lfp_6004_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490853.50479444,2038375.70117488 output=LfpNetwork_lfp_tmp_cumayasa_stream_2579
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2579@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490853.50479444,2038375.70117488...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6062_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6062_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6062_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6062_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6062_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6062_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6062_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6062_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6062_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6062_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6062_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6062_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6062_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6062_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2579@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6062_flds>
## Removing raster <r_lfp_6062_heads>
## Removing raster <r_lfp_6062_out>
## Removing vector <r_lfp_6062_heads>
## Removing vector <r_lfp_6062_lfp>
## Removing vector <r_lfp_6062_lfp2>
## Removing vector <r_lfp_6062_out>
## Removing vector <r_lfp_6062_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2579@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490853.50479444,2038375.70117488...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6062_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6062_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6062_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6062_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6062_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6062_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6062_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6062_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6062_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6062_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6062_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6062_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6062_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6062_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2579@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6062_flds>
## Removing raster <r_lfp_6062_heads>
## Removing raster <r_lfp_6062_out>
## Removing vector <r_lfp_6062_heads>
## Removing vector <r_lfp_6062_lfp>
## Removing vector <r_lfp_6062_lfp2>
## Removing vector <r_lfp_6062_out>
## Removing vector <r_lfp_6062_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490653.66219306,2035565.41459297 output=LfpNetwork_lfp_tmp_cumayasa_stream_2580
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490653.66219306,2035565.41459297...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6118_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6118_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6118_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6118_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6118_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6118_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6118_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6118_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6118_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6118_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6118_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6118_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6118_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6118_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6118_flds>
## Removing raster <r_lfp_6118_heads>
## Removing raster <r_lfp_6118_out>
## Removing vector <r_lfp_6118_heads>
## Removing vector <r_lfp_6118_lfp>
## Removing vector <r_lfp_6118_lfp2>
## Removing vector <r_lfp_6118_out>
## Removing vector <r_lfp_6118_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490653.66219306,2035565.41459297...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6118_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6118_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6118_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6118_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6118_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6118_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6118_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6118_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6118_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6118_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6118_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6118_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6118_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6118_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6118_flds>
## Removing raster <r_lfp_6118_heads>
## Removing raster <r_lfp_6118_out>
## Removing vector <r_lfp_6118_heads>
## Removing vector <r_lfp_6118_lfp>
## Removing vector <r_lfp_6118_lfp2>
## Removing vector <r_lfp_6118_out>
## Removing vector <r_lfp_6118_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2580 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2580> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2580> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2580 output=LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2580>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490753.58349375,2037538.8602816 output=LfpNetwork_lfp_tmp_cumayasa_stream_2582
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2582@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490753.58349375,2037538.8602816...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6185_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6185_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6185_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6185_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6185_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6185_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6185_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6185_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6185_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6185_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6185_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6185_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6185_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6185_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2582@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6185_flds>
## Removing raster <r_lfp_6185_heads>
## Removing raster <r_lfp_6185_out>
## Removing vector <r_lfp_6185_heads>
## Removing vector <r_lfp_6185_lfp>
## Removing vector <r_lfp_6185_lfp2>
## Removing vector <r_lfp_6185_out>
## Removing vector <r_lfp_6185_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2582@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490753.58349375,2037538.8602816...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6185_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6185_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6185_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6185_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6185_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6185_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6185_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6185_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6185_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6185_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6185_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6185_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6185_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6185_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2582@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6185_flds>
## Removing raster <r_lfp_6185_heads>
## Removing raster <r_lfp_6185_out>
## Removing vector <r_lfp_6185_heads>
## Removing vector <r_lfp_6185_lfp>
## Removing vector <r_lfp_6185_lfp2>
## Removing vector <r_lfp_6185_out>
## Removing vector <r_lfp_6185_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490791.053981508,2038513.09296333 output=LfpNetwork_lfp_tmp_cumayasa_stream_2584
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2584@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490791.053981508,2038513.09296333...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6241_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6241_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6241_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6241_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6241_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6241_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6241_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6241_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6241_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6241_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6241_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6241_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6241_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6241_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2584@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6241_flds>
## Removing raster <r_lfp_6241_heads>
## Removing raster <r_lfp_6241_out>
## Removing vector <r_lfp_6241_heads>
## Removing vector <r_lfp_6241_lfp>
## Removing vector <r_lfp_6241_lfp2>
## Removing vector <r_lfp_6241_out>
## Removing vector <r_lfp_6241_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2584@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490791.053981508,2038513.09296333...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6241_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6241_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6241_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6241_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6241_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6241_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6241_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6241_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6241_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6241_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6241_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6241_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6241_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6241_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2584@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6241_flds>
## Removing raster <r_lfp_6241_heads>
## Removing raster <r_lfp_6241_out>
## Removing vector <r_lfp_6241_heads>
## Removing vector <r_lfp_6241_lfp>
## Removing vector <r_lfp_6241_lfp2>
## Removing vector <r_lfp_6241_out>
## Removing vector <r_lfp_6241_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491115.798208751,2036239.88337263 output=LfpNetwork_lfp_tmp_cumayasa_stream_2585
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491115.798208751,2036239.88337263...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6297_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6297_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6297_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6297_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6297_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6297_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6297_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6297_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6297_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6297_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6297_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6297_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6297_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6297_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6297_flds>
## Removing raster <r_lfp_6297_heads>
## Removing raster <r_lfp_6297_out>
## Removing vector <r_lfp_6297_heads>
## Removing vector <r_lfp_6297_lfp>
## Removing vector <r_lfp_6297_lfp2>
## Removing vector <r_lfp_6297_out>
## Removing vector <r_lfp_6297_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491115.798208751,2036239.88337263...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6297_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6297_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6297_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6297_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6297_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6297_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6297_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6297_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6297_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6297_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6297_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6297_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6297_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6297_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6297_flds>
## Removing raster <r_lfp_6297_heads>
## Removing raster <r_lfp_6297_out>
## Removing vector <r_lfp_6297_heads>
## Removing vector <r_lfp_6297_lfp>
## Removing vector <r_lfp_6297_lfp2>
## Removing vector <r_lfp_6297_out>
## Removing vector <r_lfp_6297_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2585 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2585> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2585> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2585 output=LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2585>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491028.367070647,2036764.47020125 output=LfpNetwork_lfp_tmp_cumayasa_stream_2586
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491028.367070647,2036764.47020125...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6370_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6370_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6370_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6370_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6370_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6370_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6370_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6370_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6370_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6370_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6370_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6370_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6370_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6370_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6370_flds>
## Removing raster <r_lfp_6370_heads>
## Removing raster <r_lfp_6370_out>
## Removing vector <r_lfp_6370_heads>
## Removing vector <r_lfp_6370_lfp>
## Removing vector <r_lfp_6370_lfp2>
## Removing vector <r_lfp_6370_out>
## Removing vector <r_lfp_6370_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491028.367070647,2036764.47020125...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6370_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6370_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6370_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6370_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6370_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6370_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6370_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6370_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6370_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6370_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6370_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6370_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6370_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6370_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6370_flds>
## Removing raster <r_lfp_6370_heads>
## Removing raster <r_lfp_6370_out>
## Removing vector <r_lfp_6370_heads>
## Removing vector <r_lfp_6370_lfp>
## Removing vector <r_lfp_6370_lfp2>
## Removing vector <r_lfp_6370_out>
## Removing vector <r_lfp_6370_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2586 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2586> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2586> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2586 output=LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2586>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490166.545852196,2038887.79784091 output=LfpNetwork_lfp_tmp_cumayasa_stream_2587
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2587@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490166.545852196,2038887.79784091...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6439_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6439_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6439_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6439_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6439_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6439_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6439_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6439_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6439_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6439_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6439_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6439_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6439_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6439_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2587@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6439_flds>
## Removing raster <r_lfp_6439_heads>
## Removing raster <r_lfp_6439_out>
## Removing vector <r_lfp_6439_heads>
## Removing vector <r_lfp_6439_lfp>
## Removing vector <r_lfp_6439_lfp2>
## Removing vector <r_lfp_6439_out>
## Removing vector <r_lfp_6439_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2587@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490166.545852196,2038887.79784091...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6439_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6439_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6439_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6439_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6439_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6439_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6439_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6439_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6439_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6439_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6439_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6439_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6439_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6439_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2587@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6439_flds>
## Removing raster <r_lfp_6439_heads>
## Removing raster <r_lfp_6439_out>
## Removing vector <r_lfp_6439_heads>
## Removing vector <r_lfp_6439_lfp>
## Removing vector <r_lfp_6439_lfp2>
## Removing vector <r_lfp_6439_out>
## Removing vector <r_lfp_6439_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490741.093331163,2037114.19475367 output=LfpNetwork_lfp_tmp_cumayasa_stream_2590
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2590@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490741.093331163,2037114.19475367...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6489_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6489_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6489_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6489_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6489_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6489_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6489_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6489_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6489_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6489_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6489_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6489_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6489_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6489_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2590@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6489_flds>
## Removing raster <r_lfp_6489_heads>
## Removing raster <r_lfp_6489_out>
## Removing vector <r_lfp_6489_heads>
## Removing vector <r_lfp_6489_lfp>
## Removing vector <r_lfp_6489_lfp2>
## Removing vector <r_lfp_6489_out>
## Removing vector <r_lfp_6489_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2590@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490741.093331163,2037114.19475367...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6489_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6489_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6489_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6489_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6489_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6489_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6489_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6489_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6489_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6489_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6489_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6489_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6489_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6489_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2590@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6489_flds>
## Removing raster <r_lfp_6489_heads>
## Removing raster <r_lfp_6489_out>
## Removing vector <r_lfp_6489_heads>
## Removing vector <r_lfp_6489_lfp>
## Removing vector <r_lfp_6489_lfp2>
## Removing vector <r_lfp_6489_out>
## Removing vector <r_lfp_6489_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490778.563818922,2036926.84231487 output=LfpNetwork_lfp_tmp_cumayasa_stream_2591
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2591@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490778.563818922,2036926.84231487...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6549_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6549_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6549_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6549_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6549_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6549_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6549_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6549_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6549_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6549_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6549_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6549_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6549_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6549_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2591@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6549_flds>
## Removing raster <r_lfp_6549_heads>
## Removing raster <r_lfp_6549_out>
## Removing vector <r_lfp_6549_heads>
## Removing vector <r_lfp_6549_lfp>
## Removing vector <r_lfp_6549_lfp2>
## Removing vector <r_lfp_6549_out>
## Removing vector <r_lfp_6549_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2591@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490778.563818922,2036926.84231487...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6549_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6549_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6549_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6549_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6549_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6549_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6549_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6549_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6549_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6549_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6549_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6549_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6549_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6549_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2591@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6549_flds>
## Removing raster <r_lfp_6549_heads>
## Removing raster <r_lfp_6549_out>
## Removing vector <r_lfp_6549_heads>
## Removing vector <r_lfp_6549_lfp>
## Removing vector <r_lfp_6549_lfp2>
## Removing vector <r_lfp_6549_out>
## Removing vector <r_lfp_6549_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491315.640810131,2036464.70629918 output=LfpNetwork_lfp_tmp_cumayasa_stream_2592
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2592@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491315.640810131,2036464.70629918...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6609_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6609_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6609_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6609_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6609_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6609_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6609_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6609_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6609_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6609_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6609_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6609_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6609_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6609_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2592@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6609_flds>
## Removing raster <r_lfp_6609_heads>
## Removing raster <r_lfp_6609_out>
## Removing vector <r_lfp_6609_heads>
## Removing vector <r_lfp_6609_lfp>
## Removing vector <r_lfp_6609_lfp2>
## Removing vector <r_lfp_6609_out>
## Removing vector <r_lfp_6609_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2592@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491315.640810131,2036464.70629918...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6609_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6609_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6609_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6609_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6609_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6609_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6609_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6609_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6609_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6609_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6609_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6609_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6609_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6609_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2592@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6609_flds>
## Removing raster <r_lfp_6609_heads>
## Removing raster <r_lfp_6609_out>
## Removing vector <r_lfp_6609_heads>
## Removing vector <r_lfp_6609_lfp>
## Removing vector <r_lfp_6609_lfp2>
## Removing vector <r_lfp_6609_out>
## Removing vector <r_lfp_6609_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490728.603168577,2037613.80125712 output=LfpNetwork_lfp_tmp_cumayasa_stream_2593
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490728.603168577,2037613.80125712...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6661_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6661_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6661_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6661_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6661_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6661_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6661_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6661_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6661_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6661_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6661_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6661_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6661_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6661_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6661_flds>
## Removing raster <r_lfp_6661_heads>
## Removing raster <r_lfp_6661_out>
## Removing vector <r_lfp_6661_heads>
## Removing vector <r_lfp_6661_lfp>
## Removing vector <r_lfp_6661_lfp2>
## Removing vector <r_lfp_6661_out>
## Removing vector <r_lfp_6661_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490728.603168577,2037613.80125712...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6661_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6661_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6661_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6661_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6661_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6661_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6661_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6661_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6661_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6661_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6661_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6661_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6661_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6661_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6661_flds>
## Removing raster <r_lfp_6661_heads>
## Removing raster <r_lfp_6661_out>
## Removing vector <r_lfp_6661_heads>
## Removing vector <r_lfp_6661_lfp>
## Removing vector <r_lfp_6661_lfp2>
## Removing vector <r_lfp_6661_out>
## Removing vector <r_lfp_6661_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2593 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2593> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2593> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2593 output=LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2593>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490865.994957026,2035228.18020314 output=LfpNetwork_lfp_tmp_cumayasa_stream_2595
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2595@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490865.994957026,2035228.18020314...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6731_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6731_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6731_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6731_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6731_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6731_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6731_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6731_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6731_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6731_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6731_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6731_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6731_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6731_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2595@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6731_flds>
## Removing raster <r_lfp_6731_heads>
## Removing raster <r_lfp_6731_out>
## Removing vector <r_lfp_6731_heads>
## Removing vector <r_lfp_6731_lfp>
## Removing vector <r_lfp_6731_lfp2>
## Removing vector <r_lfp_6731_out>
## Removing vector <r_lfp_6731_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2595@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490865.994957026,2035228.18020314...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6731_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6731_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6731_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6731_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6731_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6731_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6731_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6731_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6731_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6731_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6731_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6731_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6731_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6731_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2595@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6731_flds>
## Removing raster <r_lfp_6731_heads>
## Removing raster <r_lfp_6731_out>
## Removing vector <r_lfp_6731_heads>
## Removing vector <r_lfp_6731_lfp>
## Removing vector <r_lfp_6731_lfp2>
## Removing vector <r_lfp_6731_out>
## Removing vector <r_lfp_6731_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=490841.014631853,2035340.59166642 output=LfpNetwork_lfp_tmp_cumayasa_stream_2596
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2596@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490841.014631853,2035340.59166642...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6785_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6785_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6785_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6785_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6785_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6785_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6785_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6785_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6785_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6785_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6785_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6785_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6785_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6785_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2596@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6785_flds>
## Removing raster <r_lfp_6785_heads>
## Removing raster <r_lfp_6785_out>
## Removing vector <r_lfp_6785_heads>
## Removing vector <r_lfp_6785_lfp>
## Removing vector <r_lfp_6785_lfp2>
## Removing vector <r_lfp_6785_out>
## Removing vector <r_lfp_6785_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2596@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 490841.014631853,2035340.59166642...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6785_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6785_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6785_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6785_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6785_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6785_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6785_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6785_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6785_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6785_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6785_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6785_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6785_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6785_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2596@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6785_flds>
## Removing raster <r_lfp_6785_heads>
## Removing raster <r_lfp_6785_out>
## Removing vector <r_lfp_6785_heads>
## Removing vector <r_lfp_6785_lfp>
## Removing vector <r_lfp_6785_lfp2>
## Removing vector <r_lfp_6785_out>
## Removing vector <r_lfp_6785_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=491078.327720992,2048617.6344956 output=LfpNetwork_lfp_tmp_cumayasa_stream_2738
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2738@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491078.327720992,2048617.6344956...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6839_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6839_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6839_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6839_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6839_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6839_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6839_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6839_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6839_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6839_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6839_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6839_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6839_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6839_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2738@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6839_flds>
## Removing raster <r_lfp_6839_heads>
## Removing raster <r_lfp_6839_out>
## Removing vector <r_lfp_6839_heads>
## Removing vector <r_lfp_6839_lfp>
## Removing vector <r_lfp_6839_lfp2>
## Removing vector <r_lfp_6839_out>
## Removing vector <r_lfp_6839_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2738@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 491078.327720992,2048617.6344956...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6839_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6839_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6839_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6839_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6839_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6839_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6839_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6839_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6839_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6839_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6839_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6839_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6839_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6839_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2738@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6839_flds>
## Removing raster <r_lfp_6839_heads>
## Removing raster <r_lfp_6839_out>
## Removing vector <r_lfp_6839_heads>
## Removing vector <r_lfp_6839_lfp>
## Removing vector <r_lfp_6839_lfp2>
## Removing vector <r_lfp_6839_out>
## Removing vector <r_lfp_6839_path>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=488330.491952018,2044895.5660449 output=LfpNetwork_lfp_tmp_cumayasa_stream_2800
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488330.491952018,2044895.5660449...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6895_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6895_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6895_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6895_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6895_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6895_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6895_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6895_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6895_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6895_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6895_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6895_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6895_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6895_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6895_flds>
## Removing raster <r_lfp_6895_heads>
## Removing raster <r_lfp_6895_out>
## Removing vector <r_lfp_6895_heads>
## Removing vector <r_lfp_6895_lfp>
## Removing vector <r_lfp_6895_lfp2>
## Removing vector <r_lfp_6895_out>
## Removing vector <r_lfp_6895_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 488330.491952018,2044895.5660449...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6895_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6895_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6895_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6895_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6895_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6895_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6895_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6895_path@PERMANENT>
## 2 lines broken
## Building topology for vector map <r_lfp_6895_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 50% 100%
## Processing areas...
## 100%
## Writing selected features...
## 25% 50% 75% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6895_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 2 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6895_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <r_lfp_6895_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6895_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Selecting features...
## 2 of 2 features selected from vector map <r_lfp_6895_lfp@PERMANENT>
## 2 features copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6895_flds>
## Removing raster <r_lfp_6895_heads>
## Removing raster <r_lfp_6895_out>
## Removing vector <r_lfp_6895_heads>
## Removing vector <r_lfp_6895_lfp>
## Removing vector <r_lfp_6895_lfp2>
## Removing vector <r_lfp_6895_out>
## Removing vector <r_lfp_6895_path>
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath output=LfpNetwork_lfp_tmp_cumayasa_stream_2800 option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2800> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2800> already
## exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800@PERMANENT>...
## Registering primitives...
##
## v.category complete. 2 features modified.
## Warning in execGRASS("v.extract", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.extract --overwrite input=LfpNetwork_lfp_tmp_cumayasa_stream_2800 output=LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath random=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## WARNING: Vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath>
## already exists and will be overwritten
## Extracting features...
## 50% 100%
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath@PERMANENT>...
## Registering primitives...
##
## Writing attributes...
## No attribute table for layer 1
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2800>
## Warning in execGRASS("r.lfp", flags = "overwrite", parameters = list(input = direction, : The command:
## r.lfp --overwrite input=rstrm_direccion coordinates=487868.355936327,2043996.27433869 output=LfpNetwork_lfp_tmp_cumayasa_stream_2810
## produced at least one warning during execution:
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2810@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487868.355936327,2043996.27433869...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6964_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6964_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6964_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6964_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6964_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6964_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6964_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6964_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6964_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6964_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6964_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6964_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6964_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6964_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2810@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6964_flds>
## Removing raster <r_lfp_6964_heads>
## Removing raster <r_lfp_6964_out>
## Removing vector <r_lfp_6964_heads>
## Removing vector <r_lfp_6964_lfp>
## Removing vector <r_lfp_6964_lfp2>
## Removing vector <r_lfp_6964_out>
## Removing vector <r_lfp_6964_path>
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2810@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing outlet at 487868.355936327,2043996.27433869...
## Scanning input for column types...
## Number of columns: 2
## Number of rows: 1
## Importing points...
## 0% 100%
## Building topology for vector map <r_lfp_6964_out@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <r_lfp_6964_out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <r_lfp_6964_flds>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6964_heads@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Input direction format assumed to be degrees CCW from East divided by 45
## Building topology for vector map <r_lfp_6964_path@PERMANENT>...
## Registering primitives...
##
## r.path complete.
## WARNING: Vector map <r_lfp_6964_out> already exists and will be overwritten
## Extracting points...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map <r_lfp_6964_out@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Reading features...
## 0% 100%
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6964_path@PERMANENT>
## 1 line broken
## Building topology for vector map <r_lfp_6964_path@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Processing features...
## 0% 100%
## Processing areas...
## 100%
## Writing selected features...
## 50% 100%
## Writing attributes...
## WARNING: No table for layer 1
## Building topology for vector map <r_lfp_6964_lfp@PERMANENT>...
## Registering primitives...
##
## v.select complete. 1 features written to output.
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6964_lfp2@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## WARNING: Vector map <r_lfp_6964_lfp> already exists and will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map <r_lfp_6964_lfp@PERMANENT>...
## Registering primitives...
##
## v.category complete. 1 feature modified.
## Selecting features...
## 1 of 1 feature selected from vector map <r_lfp_6964_lfp@PERMANENT>
## 1 feature copied
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2810@PERMANENT>...
## Registering primitives...
##
## v.edit complete.
## Removing raster <r_lfp_6964_flds>
## Removing raster <r_lfp_6964_heads>
## Removing raster <r_lfp_6964_out>
## Removing vector <r_lfp_6964_heads>
## Removing vector <r_lfp_6964_lfp>
## Removing vector <r_lfp_6964_lfp2>
## Removing vector <r_lfp_6964_out>
## Removing vector <r_lfp_6964_path>
## LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_1001
## LfpNetwork_lfp_tmp_cumayasa_stream_1009
## LfpNetwork_lfp_tmp_cumayasa_stream_1039
## LfpNetwork_lfp_tmp_cumayasa_stream_1052
## LfpNetwork_lfp_tmp_cumayasa_stream_1061
## LfpNetwork_lfp_tmp_cumayasa_stream_1069
## LfpNetwork_lfp_tmp_cumayasa_stream_1073
## LfpNetwork_lfp_tmp_cumayasa_stream_1081
## LfpNetwork_lfp_tmp_cumayasa_stream_1090
## LfpNetwork_lfp_tmp_cumayasa_stream_1100
## LfpNetwork_lfp_tmp_cumayasa_stream_1108
## LfpNetwork_lfp_tmp_cumayasa_stream_1109
## LfpNetwork_lfp_tmp_cumayasa_stream_111
## LfpNetwork_lfp_tmp_cumayasa_stream_1149
## LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_1159
## LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_123
## LfpNetwork_lfp_tmp_cumayasa_stream_1242
## LfpNetwork_lfp_tmp_cumayasa_stream_129
## LfpNetwork_lfp_tmp_cumayasa_stream_1324
## LfpNetwork_lfp_tmp_cumayasa_stream_1326
## LfpNetwork_lfp_tmp_cumayasa_stream_1344
## LfpNetwork_lfp_tmp_cumayasa_stream_1353
## LfpNetwork_lfp_tmp_cumayasa_stream_1359
## LfpNetwork_lfp_tmp_cumayasa_stream_1371
## LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_1393
## LfpNetwork_lfp_tmp_cumayasa_stream_14
## LfpNetwork_lfp_tmp_cumayasa_stream_142
## LfpNetwork_lfp_tmp_cumayasa_stream_1479
## LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_1528
## LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_1602
## LfpNetwork_lfp_tmp_cumayasa_stream_161
## LfpNetwork_lfp_tmp_cumayasa_stream_1614
## LfpNetwork_lfp_tmp_cumayasa_stream_1682
## LfpNetwork_lfp_tmp_cumayasa_stream_1689
## LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_1701
## LfpNetwork_lfp_tmp_cumayasa_stream_1712
## LfpNetwork_lfp_tmp_cumayasa_stream_1764
## LfpNetwork_lfp_tmp_cumayasa_stream_1775
## LfpNetwork_lfp_tmp_cumayasa_stream_1779
## LfpNetwork_lfp_tmp_cumayasa_stream_1785
## LfpNetwork_lfp_tmp_cumayasa_stream_1810
## LfpNetwork_lfp_tmp_cumayasa_stream_1819
## LfpNetwork_lfp_tmp_cumayasa_stream_1820
## LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_187
## LfpNetwork_lfp_tmp_cumayasa_stream_1871
## LfpNetwork_lfp_tmp_cumayasa_stream_1903
## LfpNetwork_lfp_tmp_cumayasa_stream_1935
## LfpNetwork_lfp_tmp_cumayasa_stream_1961
## LfpNetwork_lfp_tmp_cumayasa_stream_1976
## LfpNetwork_lfp_tmp_cumayasa_stream_1977
## LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_1994
## LfpNetwork_lfp_tmp_cumayasa_stream_2028
## LfpNetwork_lfp_tmp_cumayasa_stream_2040
## LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2066
## LfpNetwork_lfp_tmp_cumayasa_stream_2068
## LfpNetwork_lfp_tmp_cumayasa_stream_2079
## LfpNetwork_lfp_tmp_cumayasa_stream_2093
## LfpNetwork_lfp_tmp_cumayasa_stream_2099
## LfpNetwork_lfp_tmp_cumayasa_stream_2102
## LfpNetwork_lfp_tmp_cumayasa_stream_2104
## LfpNetwork_lfp_tmp_cumayasa_stream_2107
## LfpNetwork_lfp_tmp_cumayasa_stream_2116
## LfpNetwork_lfp_tmp_cumayasa_stream_2135
## LfpNetwork_lfp_tmp_cumayasa_stream_2138
## LfpNetwork_lfp_tmp_cumayasa_stream_2170
## LfpNetwork_lfp_tmp_cumayasa_stream_2200
## LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2218
## LfpNetwork_lfp_tmp_cumayasa_stream_2229
## LfpNetwork_lfp_tmp_cumayasa_stream_2234
## LfpNetwork_lfp_tmp_cumayasa_stream_2269
## LfpNetwork_lfp_tmp_cumayasa_stream_227
## LfpNetwork_lfp_tmp_cumayasa_stream_2292
## LfpNetwork_lfp_tmp_cumayasa_stream_2293
## LfpNetwork_lfp_tmp_cumayasa_stream_2296
## LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2313
## LfpNetwork_lfp_tmp_cumayasa_stream_2318
## LfpNetwork_lfp_tmp_cumayasa_stream_2320
## LfpNetwork_lfp_tmp_cumayasa_stream_2321
## LfpNetwork_lfp_tmp_cumayasa_stream_2322
## LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_233
## LfpNetwork_lfp_tmp_cumayasa_stream_2345
## LfpNetwork_lfp_tmp_cumayasa_stream_2350
## LfpNetwork_lfp_tmp_cumayasa_stream_2353
## LfpNetwork_lfp_tmp_cumayasa_stream_2361
## LfpNetwork_lfp_tmp_cumayasa_stream_2364
## LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2374
## LfpNetwork_lfp_tmp_cumayasa_stream_2386
## LfpNetwork_lfp_tmp_cumayasa_stream_2397
## LfpNetwork_lfp_tmp_cumayasa_stream_2399
## LfpNetwork_lfp_tmp_cumayasa_stream_2403
## LfpNetwork_lfp_tmp_cumayasa_stream_2410
## LfpNetwork_lfp_tmp_cumayasa_stream_2413
## LfpNetwork_lfp_tmp_cumayasa_stream_2417
## LfpNetwork_lfp_tmp_cumayasa_stream_2420
## LfpNetwork_lfp_tmp_cumayasa_stream_2421
## LfpNetwork_lfp_tmp_cumayasa_stream_2433
## LfpNetwork_lfp_tmp_cumayasa_stream_2435
## LfpNetwork_lfp_tmp_cumayasa_stream_2436
## LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2438
## LfpNetwork_lfp_tmp_cumayasa_stream_2448
## LfpNetwork_lfp_tmp_cumayasa_stream_2449
## LfpNetwork_lfp_tmp_cumayasa_stream_2459
## LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2463
## LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2471
## LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2474
## LfpNetwork_lfp_tmp_cumayasa_stream_2475
## LfpNetwork_lfp_tmp_cumayasa_stream_2476
## LfpNetwork_lfp_tmp_cumayasa_stream_2478
## LfpNetwork_lfp_tmp_cumayasa_stream_2481
## LfpNetwork_lfp_tmp_cumayasa_stream_2483
## LfpNetwork_lfp_tmp_cumayasa_stream_2485
## LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2509
## LfpNetwork_lfp_tmp_cumayasa_stream_2511
## LfpNetwork_lfp_tmp_cumayasa_stream_2515
## LfpNetwork_lfp_tmp_cumayasa_stream_2516
## LfpNetwork_lfp_tmp_cumayasa_stream_2527
## LfpNetwork_lfp_tmp_cumayasa_stream_2530
## LfpNetwork_lfp_tmp_cumayasa_stream_2534
## LfpNetwork_lfp_tmp_cumayasa_stream_2535
## LfpNetwork_lfp_tmp_cumayasa_stream_2536
## LfpNetwork_lfp_tmp_cumayasa_stream_2537
## LfpNetwork_lfp_tmp_cumayasa_stream_2539
## LfpNetwork_lfp_tmp_cumayasa_stream_2541
## LfpNetwork_lfp_tmp_cumayasa_stream_2544
## LfpNetwork_lfp_tmp_cumayasa_stream_2547
## LfpNetwork_lfp_tmp_cumayasa_stream_2548
## LfpNetwork_lfp_tmp_cumayasa_stream_2553
## LfpNetwork_lfp_tmp_cumayasa_stream_2554
## LfpNetwork_lfp_tmp_cumayasa_stream_2555
## LfpNetwork_lfp_tmp_cumayasa_stream_2557
## LfpNetwork_lfp_tmp_cumayasa_stream_2558
## LfpNetwork_lfp_tmp_cumayasa_stream_2562
## LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2578
## LfpNetwork_lfp_tmp_cumayasa_stream_2579
## LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2582
## LfpNetwork_lfp_tmp_cumayasa_stream_2584
## LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2587
## LfpNetwork_lfp_tmp_cumayasa_stream_2590
## LfpNetwork_lfp_tmp_cumayasa_stream_2591
## LfpNetwork_lfp_tmp_cumayasa_stream_2592
## LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2595
## LfpNetwork_lfp_tmp_cumayasa_stream_2596
## LfpNetwork_lfp_tmp_cumayasa_stream_26
## LfpNetwork_lfp_tmp_cumayasa_stream_262
## LfpNetwork_lfp_tmp_cumayasa_stream_2738
## LfpNetwork_lfp_tmp_cumayasa_stream_274
## LfpNetwork_lfp_tmp_cumayasa_stream_28
## LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_2810
## LfpNetwork_lfp_tmp_cumayasa_stream_3
## LfpNetwork_lfp_tmp_cumayasa_stream_328
## LfpNetwork_lfp_tmp_cumayasa_stream_33
## LfpNetwork_lfp_tmp_cumayasa_stream_355
## LfpNetwork_lfp_tmp_cumayasa_stream_4
## LfpNetwork_lfp_tmp_cumayasa_stream_40
## LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_484
## LfpNetwork_lfp_tmp_cumayasa_stream_54
## LfpNetwork_lfp_tmp_cumayasa_stream_60
## LfpNetwork_lfp_tmp_cumayasa_stream_63
## LfpNetwork_lfp_tmp_cumayasa_stream_657
## LfpNetwork_lfp_tmp_cumayasa_stream_675
## LfpNetwork_lfp_tmp_cumayasa_stream_68
## LfpNetwork_lfp_tmp_cumayasa_stream_684
## LfpNetwork_lfp_tmp_cumayasa_stream_707
## LfpNetwork_lfp_tmp_cumayasa_stream_711
## LfpNetwork_lfp_tmp_cumayasa_stream_724
## LfpNetwork_lfp_tmp_cumayasa_stream_732
## LfpNetwork_lfp_tmp_cumayasa_stream_744
## LfpNetwork_lfp_tmp_cumayasa_stream_758
## LfpNetwork_lfp_tmp_cumayasa_stream_762
## LfpNetwork_lfp_tmp_cumayasa_stream_763
## LfpNetwork_lfp_tmp_cumayasa_stream_773
## LfpNetwork_lfp_tmp_cumayasa_stream_780
## LfpNetwork_lfp_tmp_cumayasa_stream_789
## LfpNetwork_lfp_tmp_cumayasa_stream_8
## LfpNetwork_lfp_tmp_cumayasa_stream_81
## LfpNetwork_lfp_tmp_cumayasa_stream_828
## LfpNetwork_lfp_tmp_cumayasa_stream_834
## LfpNetwork_lfp_tmp_cumayasa_stream_85
## LfpNetwork_lfp_tmp_cumayasa_stream_852
## LfpNetwork_lfp_tmp_cumayasa_stream_86
## LfpNetwork_lfp_tmp_cumayasa_stream_863
## LfpNetwork_lfp_tmp_cumayasa_stream_866
## LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_903
## LfpNetwork_lfp_tmp_cumayasa_stream_974
## LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath
## LfpNetwork_lfp_tmp_cumayasa_stream_992
## LfpNetwork_lfp_tmp_cumayasa_stream_998
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1001>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1009>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1039>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1052>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1061>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1069>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1073>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1081>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1090>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1100>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1108>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1109>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_111>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1149>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1159>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_123>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1242>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_129>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1324>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1326>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1344>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1353>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1359>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1371>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1393>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_14>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_142>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1479>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1528>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1602>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_161>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1614>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1682>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1689>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1701>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1712>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1764>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1775>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1779>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1785>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1810>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1819>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1820>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_187>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1871>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1903>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1935>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1961>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1976>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1977>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_1994>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2028>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2040>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2066>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2068>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2079>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2093>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2099>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2102>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2104>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2107>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2116>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2135>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2138>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2170>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2200>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2218>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2229>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2234>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2269>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_227>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2292>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2293>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2296>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2313>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2318>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2320>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2321>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2322>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_233>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2345>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2350>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2353>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2361>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2364>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2374>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2386>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2397>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2399>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2403>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2410>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2413>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2417>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2420>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2421>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2433>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2435>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2436>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2438>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2448>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2449>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2459>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2463>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2471>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2474>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2475>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2476>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2478>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2481>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2483>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2485>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2509>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2511>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2515>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2516>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2527>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2530>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2534>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2535>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2536>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2537>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2539>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2541>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2544>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2547>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2548>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2553>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2554>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2555>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2557>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2558>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2562>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2578>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2579>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2582>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2584>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2587>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2590>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2591>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2592>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2595>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2596>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_26>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_262>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2738>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_274>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_28>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_2810>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_3>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_328>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_33>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_355>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_4>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_40>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_484>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_54>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_60>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_63>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_657>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_675>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_68>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_684>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_707>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_711>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_724>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_732>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_744>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_758>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_762>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_763>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_773>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_780>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_789>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_8>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_81>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_828>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_834>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_85>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_852>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_86>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_863>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_866>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_903>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_974>...
## Patching vector map
## <LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_992>...
## Patching vector map <LfpNetwork_lfp_tmp_cumayasa_stream_998>...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_all_tributaries_cumayasa@PERMANENT>...
## Registering primitives...
##
## Building topology for vector map
## <LfpNetwork_lfp_tmp_all_tributaries_cumayasa@PERMANENT>...
## Intersections at borders will have to be snapped
## Lines common between files will have to be edited
## The header information also may have to be edited
## v.patch complete. 219 vector maps patched
## Patching vector map <LfpNetwork_lfp_cumayasa>...
## Patching vector map <LfpNetwork_lfp_tmp_all_tributaries_cumayasa>...
## Building topology for vector map
## <LfpNetwork_lfp_all_final_cumayasa@PERMANENT>...
## Registering primitives...
##
## Building topology for vector map
## <LfpNetwork_lfp_all_final_cumayasa@PERMANENT>...
## Intersections at borders will have to be snapped
## Lines common between files will have to be edited
## The header information also may have to be edited
## v.patch complete. 2 vector maps patched
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_tmp_cumayasaall_final_@PERMANENT>...
## Registering primitives...
##
## v.category complete. 220 features modified.
## Warning in execGRASS("v.category", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_lfp_tmp_", : The command:
## v.category --overwrite input=LfpNetwork_lfp_tmp_cumayasaall_final_ output=LfpNetwork_lfp_all_final_cumayasa option=add cat=1
## produced at least one warning during execution:
## WARNING: Vector map <LfpNetwork_lfp_all_final_cumayasa> already exists and
## will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_all_final_cumayasa@PERMANENT>...
## Registering primitives...
##
## v.category complete. 220 features modified.
## WARNING: Vector map <LfpNetwork_lfp_all_final_cumayasa> already exists and
## will be overwritten
## Processing features...
## Copying attribute table(s)...
## Building topology for vector map
## <LfpNetwork_lfp_all_final_cumayasa@PERMANENT>...
## Registering primitives...
##
## v.category complete. 220 features modified.
## Removing vector <LfpNetwork_lfp_tmp_all_tributaries_cumayasa>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1000_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1001>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1009>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1039>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1052>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1061>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1069>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1073>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1081>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1090>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1100>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1108>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1109>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_111>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1149>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1152_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1159>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1222_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_123>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1242>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_129>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1324>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1326>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1344>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1353>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1359>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1371>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1377_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1380_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1393>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_14>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_142>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1479>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1523_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1528>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1599_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1602>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_161>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1614>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1682>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1689>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_168_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1701>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1712>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1764>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1775>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1779>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1785>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1810>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1819>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1820>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1863_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_187>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1871>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1903>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1935>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1961>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1976>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1977>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1989_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_1994>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2028>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2040>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2043_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2066>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2068>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2079>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2093>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2099>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2102>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2104>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2107>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2116>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2135>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2138>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2170>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2200>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2209_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2215_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2218>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2229>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2234>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2269>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_227>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2292>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2293>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2296>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2309_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2313>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2318>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2320>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2321>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2322>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2323_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_233>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2345>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2350>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2353>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2361>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2364>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2370_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2374>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2386>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2397>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2399>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2403>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2410>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2413>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2417>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2420>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2421>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2433>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2435>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2436>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2437_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2438>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2448>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2449>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2459>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2460_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2463>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2464_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2469_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2471>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2472_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2474>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2475>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2476>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2478>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2481>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2483>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2485>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2492_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2509>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2511>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2515>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2516>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2527>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2530>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2534>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2535>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2536>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2537>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2539>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2541>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2544>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2547>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2548>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2553>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2554>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2555>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2557>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2558>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2562>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2563_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2577_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2578>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2579>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2580_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2582>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2584>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2585_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2586_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2587>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2590>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2591>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2592>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2593_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2595>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2596>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_26>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_262>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2738>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_274>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_28>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2800_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_2810>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_3>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_328>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_33>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_355>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_4>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_40>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_406_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_458_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_484>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_54>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_60>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_63>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_657>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_675>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_68>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_684>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_707>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_711>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_724>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_732>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_744>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_758>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_762>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_763>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_773>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_780>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_789>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_8>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_81>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_828>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_834>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_85>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_852>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_86>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_863>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_866>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_875_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_903>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_974>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_979_onesinglepath>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_992>
## Removing vector <LfpNetwork_lfp_tmp_cumayasa_stream_998>
## Removing vector <LfpNetwork_lfp_tmp_cumayasaall_final_>
# Imprimir lista de mapas ráster y vectoriales
execGRASS(
'g.list',
flags = 't',
parameters = list(
type = c('raster', 'vector')
)
)
## raster/MASK
## raster/accum-de-rwshed
## raster/basins
## raster/cuenca_cumayasa
## raster/cuenca_cumayasa1
## raster/cuenca_cumayasa2
## raster/cuenca_cumayasa3
## raster/cuenca_cumayasa4
## raster/cuenca_cumayasa5
## raster/cuenca_cumayasa6
## raster/dem
## raster/dem_tallado
## raster/depresiones_todas
## raster/drainage-dir-de-rwshed
## raster/half-basins
## raster/order-hack-gravelius
## raster/order-horton
## raster/order-shreve
## raster/order-strahler
## raster/order-topology
## raster/red_mtn50k_cleaned_largos
## raster/rstrm_cumayasa
## raster/rstrm_direccion
## raster/stddem
## raster/stddemburn
## raster/stream-de-rwshed
## vector/LfpNetwork_lfp_all_final_cumayasa
## vector/LfpNetwork_lfp_cumayasa
## vector/LfpNetwork_tributaries_cumayasa
## vector/LfpNetwork_tributaries_preconf_cumayasa
## vector/cuenca_cumayasa
## vector/cuenca_cumayasa1
## vector/cuenca_cumayasa2
## vector/cuenca_cumayasa3
## vector/cuenca_cumayasa4
## vector/cuenca_cumayasa5
## vector/cuenca_cumayasa6
## vector/cuenca_cumayasa_buffer
## vector/dem_extent
## vector/depresiones_para_editar
## vector/order_all
## vector/red_mtn50k_cleaned_largos
## vector/rstrm_cumayasa
# Representar con leaflet
library(leaflet)
lfp <- readVECT('LfpNetwork_lfp_all_final_cumayasa')
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=LfpNetwork_lfp_all_final_cumayasa type=line layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/472.0.gpkg output_layer=LfpNetwork_lfp_all_final_cumayasa format=GPKG
## produced at least one warning during execution:
## WARNING: No attribute table found -> using only category numbers as
## attributes
## Exporting 220 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 220 features (Line String type) written to
## <LfpNetwork_lfp_all_final_cumayasa> (GPKG format).
## WARNING: No attribute table found -> using only category numbers as
## attributes
## Exporting 220 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 220 features (Line String type) written to
## <LfpNetwork_lfp_all_final_cumayasa> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/472.0.gpkg", layer: "LfpNetwork_lfp_all_final_cumayasa"
## with 220 features
## It has 1 fields
lfp4326 <- spTransform(lfp, CRSobj = CRS("+init=epsg:4326"))
leaflet() %>%
addProviderTiles(providers$OpenTopoMap, group = 'terrain') %>%
addPolylines(
data = lfp4326, weight = 3, opacity = 0.7, group = 'order',
label = ~as.character(cat),
highlightOptions = highlightOptions(color = "white",
weight = 5, bringToFront = F, opacity = 1),
labelOptions = labelOptions(noHide = T,
style = list(
"font-size" = "8px",
"background" = "rgba(255, 255, 255, 0.5)",
"background-clip" = "padding-box",
"padding" = "1px"))) %>%
leafem::addHomeButton(extent(lfp4326), 'Ver todo')

# Exportar a KML
execGRASS(
'v.out.ogr',
flags = c('overwrite','quiet'),
parameters = list(
input = 'LfpNetwork_lfp_all_final_cumayasa',
output = 'lfp_kml.kml',
format = 'KML',
dsco = 'NameField=cat'
)
)
## Warning in execGRASS("v.out.ogr", flags = c("overwrite", "quiet"), parameters = list(input = "LfpNetwork_lfp_all_final_cumayasa", : The command:
## v.out.ogr --overwrite --quiet input=LfpNetwork_lfp_all_final_cumayasa output=lfp_kml.kml format=KML dsco=NameField=cat
## produced at least one warning during execution:
## WARNING: No attribute table found -> using only category numbers as
## attributes
## WARNING: No attribute table found -> using only category numbers as
## attributes
# CONTINUAR AQUÍ ----
# Obtención de perfiles longitudinales e índices de concavidad
source('https://raw.githubusercontent.com/geofis/rgrass/master/lfp_profiles_concavity.R') #Cargado como función "LfpProfilesConcavity"
cumayasa_conv_prof <- LfpProfilesConcavity(
xycoords = my_trans(c(-69.08398956002, 18.39925229788)),
network = 'LfpNetwork_lfp_all_final_cumayasa',
prefix = 'cumayasa',
dem = 'dem',
direction = 'rstrm_direccion',
crs = '+init=epsg:32619',
smns = 1,
nrow = 6)
## Check if OGR layer <LfpNetwork_outlet_cumayasa> contains polygons...
## 0% 100%
## Creating attribute table for layer <LfpNetwork_outlet_cumayasa>...
## Importing 1 features (OGR layer <LfpNetwork_outlet_cumayasa>)...
## 0% 100%
## -----------------------------------------------------
## Building topology for vector map <LfpNetwork_outlet_cumayasa@PERMANENT>...
## Registering primitives...
## Warning in execGRASS("v.to.rast", flags = "overwrite", parameters = list(input = paste0("LfpNetwork_outlet_", : The command:
## v.to.rast --overwrite input=LfpNetwork_outlet_cumayasa output=LfpNetwork-outlet-cumayasa use=cat
## produced at least one warning during execution:
## WARNING: No areas selected from vector map <LfpNetwork_outlet_cumayasa>
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## WARNING: No areas selected from vector map <LfpNetwork_outlet_cumayasa>
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <LfpNetwork-outlet-cumayasa>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rstrm_direccion>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <LfpNetwork-flds-cumayasa>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=LfpNetwork_lfp_all_final_cumayasa type=line layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/406.0.gpkg output_layer=LfpNetwork_lfp_all_final_cumayasa format=GPKG
## produced at least one warning during execution:
## WARNING: No attribute table found -> using only category numbers as
## attributes
## Exporting 220 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 220 features (Line String type) written to
## <LfpNetwork_lfp_all_final_cumayasa> (GPKG format).
## WARNING: No attribute table found -> using only category numbers as
## attributes
## Exporting 220 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 220 features (Line String type) written to
## <LfpNetwork_lfp_all_final_cumayasa> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/406.0.gpkg", layer: "LfpNetwork_lfp_all_final_cumayasa"
## with 220 features
## It has 1 fields
## Creating BIL support files...
## Exporting raster as floating values (bytes=8)
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Creating BIL support files...
## Exporting raster as floating values (bytes=8)
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Mostrar resultados
jpeg('cumayasa_conv_prof_profiles.jpg', width = 4000, height = 2000, res = 100)
cumayasa_conv_prof$profiles
dev.off()
## RStudioGD
## 2
cumayasa_conv_prof$dimensionlessprofiles2 <- cumayasa_conv_prof$dimensionlessprofiles +
geom_text(aes(label = NULL))

jpeg('cumayasa_conv_prof$dimensionlessprofiles.jpg', width = 4000, height = 2000, res = 350)
cumayasa_conv_prof$dimensionlessprofiles
## Error: Aesthetics must be either length 1 or the same as the data (48400): label
cumayasa_conv_prof$concavityindex
## stream ci
## 1 cumayasa-1 3.748726e-01
## 2 cumayasa-2 -6.283679e-02
## 3 cumayasa-3 -7.577066e-02
## 4 cumayasa-4 -2.301621e-01
## 5 cumayasa-5 1.005508e-01
## 6 cumayasa-6 -5.655217e-02
## 7 cumayasa-7 1.787867e-02
## 8 cumayasa-8 3.172352e-02
## 9 cumayasa-9 3.905966e-02
## 10 cumayasa-10 -2.183961e-01
## 11 cumayasa-11 -1.285829e-02
## 12 cumayasa-12 1.118523e-01
## 13 cumayasa-13 1.000000e+00
## 14 cumayasa-14 -2.374644e-01
## 15 cumayasa-15 -6.309711e-02
## 16 cumayasa-16 3.364276e-01
## 17 cumayasa-17 -2.433157e-01
## 18 cumayasa-18 -2.217642e-01
## 19 cumayasa-19 8.104975e-04
## 20 cumayasa-20 7.458194e-02
## 21 cumayasa-21 -8.165092e-02
## 22 cumayasa-22 0.000000e+00
## 23 cumayasa-23 -1.483737e-01
## 24 cumayasa-24 -5.378566e-05
## 25 cumayasa-25 -2.045976e-01
## 26 cumayasa-26 1.747263e-03
## 27 cumayasa-27 -3.243780e-02
## 28 cumayasa-28 -8.306185e-02
## 29 cumayasa-29 -2.070266e-02
## 30 cumayasa-30 -7.224394e-02
## 31 cumayasa-31 1.000000e+00
## 32 cumayasa-32 1.308979e-01
## 33 cumayasa-33 1.000000e+00
## 34 cumayasa-34 -2.037293e-01
## 35 cumayasa-35 3.669596e-02
## 36 cumayasa-36 1.968021e-01
## 37 cumayasa-37 1.505082e-01
## 38 cumayasa-38 -2.188773e-01
## 39 cumayasa-39 4.081225e-02
## 40 cumayasa-40 -7.950946e-02
## 41 cumayasa-41 6.646849e-03
## 42 cumayasa-42 1.011718e-02
## 43 cumayasa-43 1.000000e+00
## 44 cumayasa-44 5.376517e-02
## 45 cumayasa-45 -2.915542e-01
## 46 cumayasa-46 1.157587e-01
## 47 cumayasa-47 -1.483062e-01
## 48 cumayasa-48 1.073233e-01
## 49 cumayasa-49 1.575689e-02
## 50 cumayasa-50 -7.468900e-02
## 51 cumayasa-51 -4.316903e-01
## 52 cumayasa-52 -2.665017e-01
## 53 cumayasa-53 2.484685e-01
## 54 cumayasa-54 1.131161e-01
## 55 cumayasa-55 -3.714319e-01
## 56 cumayasa-56 -4.424053e-01
## 57 cumayasa-57 -5.437491e-01
## 58 cumayasa-58 0.000000e+00
## 59 cumayasa-59 -1.941117e-02
## 60 cumayasa-60 -1.959391e-01
## 61 cumayasa-61 -9.829844e-02
## 62 cumayasa-62 -8.963953e-02
## 63 cumayasa-63 -2.824569e-01
## 64 cumayasa-64 5.696195e-02
## 65 cumayasa-65 -1.870164e-01
## 66 cumayasa-66 -1.045918e-01
## 67 cumayasa-67 -9.433367e-02
## 68 cumayasa-68 2.910386e-02
## 69 cumayasa-69 1.871450e-01
## 70 cumayasa-70 2.705542e-02
## 71 cumayasa-71 -1.180905e-01
## 72 cumayasa-72 -4.823369e-01
## 73 cumayasa-73 8.467019e-02
## 74 cumayasa-74 -9.610577e-02
## 75 cumayasa-75 -1.512225e-01
## 76 cumayasa-76 2.841127e-02
## 77 cumayasa-77 1.472787e-01
## 78 cumayasa-78 -2.883121e-02
## 79 cumayasa-79 -6.647320e-02
## 80 cumayasa-80 4.918089e-01
## 81 cumayasa-81 -2.494593e-02
## 82 cumayasa-82 -2.184585e-01
## 83 cumayasa-83 1.209807e-02
## 84 cumayasa-84 -2.035573e-01
## 85 cumayasa-85 6.615816e-01
## 86 cumayasa-86 -1.906063e-01
## 87 cumayasa-87 -7.798692e-03
## 88 cumayasa-88 -3.660107e-01
## 89 cumayasa-89 -4.439723e-02
## 90 cumayasa-90 -2.264148e-02
## 91 cumayasa-91 -2.631565e-01
## 92 cumayasa-92 2.823617e-01
## 93 cumayasa-93 -2.406131e-01
## 94 cumayasa-94 -1.859089e-01
## 95 cumayasa-95 -1.120873e-01
## 96 cumayasa-96 9.872269e-02
## 97 cumayasa-97 -1.287660e-01
## 98 cumayasa-98 -4.255613e-02
## 99 cumayasa-99 -2.374178e-01
## 100 cumayasa-100 -5.165045e-01
## 101 cumayasa-101 -3.769595e-02
## 102 cumayasa-102 -9.421386e-02
## 103 cumayasa-103 -2.439444e-02
## 104 cumayasa-104 -6.664132e-02
## 105 cumayasa-105 -1.938160e-01
## 106 cumayasa-106 -3.043031e-02
## 107 cumayasa-107 5.215310e-02
## 108 cumayasa-108 -8.964738e-02
## 109 cumayasa-109 -4.415023e-01
## 110 cumayasa-110 -4.700893e-02
## 111 cumayasa-111 -1.334347e-02
## 112 cumayasa-112 -1.397027e-01
## 113 cumayasa-113 -1.875744e-01
## 114 cumayasa-114 -6.832464e-02
## 115 cumayasa-115 -1.131904e-01
## 116 cumayasa-116 -3.333422e-01
## 117 cumayasa-117 -2.880568e-01
## 118 cumayasa-118 -1.312280e-01
## 119 cumayasa-119 -6.328446e-02
## 120 cumayasa-120 -2.953825e-01
## 121 cumayasa-121 -1.726573e-01
## 122 cumayasa-122 -2.166051e-01
## 123 cumayasa-123 -1.207049e-01
## 124 cumayasa-124 1.998332e-02
## 125 cumayasa-125 1.361079e-02
## 126 cumayasa-126 -2.543721e-01
## 127 cumayasa-127 3.762949e-02
## 128 cumayasa-128 3.880702e-02
## 129 cumayasa-129 -4.448721e-01
## 130 cumayasa-130 -3.252736e-01
## 131 cumayasa-131 6.108229e-03
## 132 cumayasa-132 -3.028289e-01
## 133 cumayasa-133 -7.774647e-03
## 134 cumayasa-134 -1.963268e-01
## 135 cumayasa-135 -2.353693e-01
## 136 cumayasa-136 -2.639975e-01
## 137 cumayasa-137 1.848921e-02
## 138 cumayasa-138 -3.468067e-01
## 139 cumayasa-139 1.565807e-01
## 140 cumayasa-140 -1.089676e-03
## 141 cumayasa-141 -7.242000e-03
## 142 cumayasa-142 1.878174e-04
## 143 cumayasa-143 -6.378884e-01
## 144 cumayasa-144 -1.726516e-01
## 145 cumayasa-145 -2.527295e-01
## 146 cumayasa-146 -1.372381e-01
## 147 cumayasa-147 3.060794e-01
## 148 cumayasa-148 -5.214661e-01
## 149 cumayasa-149 -1.180752e-01
## 150 cumayasa-150 -1.129860e-01
## 151 cumayasa-151 -7.293707e-02
## 152 cumayasa-152 1.198738e-01
## 153 cumayasa-153 7.315587e-02
## 154 cumayasa-154 2.203915e-01
## 155 cumayasa-155 -3.318603e-01
## 156 cumayasa-156 1.053256e-02
## 157 cumayasa-157 3.252493e-02
## 158 cumayasa-158 1.187528e-01
## 159 cumayasa-159 -6.457454e-03
## 160 cumayasa-160 -1.642699e-02
## 161 cumayasa-161 -3.851500e-01
## 162 cumayasa-162 -1.698603e-01
## 163 cumayasa-163 -4.717937e-02
## 164 cumayasa-164 -1.683715e-01
## 165 cumayasa-165 -8.245913e-02
## 166 cumayasa-166 -1.556726e-02
## 167 cumayasa-167 -5.385012e-02
## 168 cumayasa-168 4.578688e-02
## 169 cumayasa-169 -3.156585e-01
## 170 cumayasa-170 -6.064529e-02
## 171 cumayasa-171 -1.818279e-01
## 172 cumayasa-172 3.578092e-01
## 173 cumayasa-173 5.673180e-02
## 174 cumayasa-174 2.222743e-01
## 175 cumayasa-175 1.101121e-01
## 176 cumayasa-176 4.303721e-01
## 177 cumayasa-177 2.603896e-01
## 178 cumayasa-178 -6.158358e-02
## 179 cumayasa-179 6.579664e-02
## 180 cumayasa-180 5.217695e-01
## 181 cumayasa-181 4.253041e-01
## 182 cumayasa-182 2.092256e-01
## 183 cumayasa-183 2.815156e-01
## 184 cumayasa-184 -1.344403e-03
## 185 cumayasa-185 4.850097e-01
## 186 cumayasa-186 5.409329e-01
## 187 cumayasa-187 1.004924e-01
## 188 cumayasa-188 2.578926e-01
## 189 cumayasa-189 3.282385e-01
## 190 cumayasa-190 3.328870e-01
## 191 cumayasa-191 1.662706e-03
## 192 cumayasa-192 1.535061e-01
## 193 cumayasa-193 3.124466e-01
## 194 cumayasa-194 -5.534228e-04
## 195 cumayasa-195 2.314932e-01
## 196 cumayasa-196 3.982414e-02
## 197 cumayasa-197 -6.503754e-02
## 198 cumayasa-198 5.293570e-03
## 199 cumayasa-199 2.218808e-01
## 200 cumayasa-200 -5.949996e-02
## 201 cumayasa-201 1.043086e-01
## 202 cumayasa-202 1.840232e-01
## 203 cumayasa-203 -1.694068e-01
## 204 cumayasa-204 6.099342e-02
## 205 cumayasa-205 2.340437e-01
## 206 cumayasa-206 9.443438e-02
## 207 cumayasa-207 1.914078e-01
## 208 cumayasa-208 -6.038313e-02
## 209 cumayasa-209 5.959955e-02
## 210 cumayasa-210 1.315880e-01
## 211 cumayasa-211 -1.296682e-01
## 212 cumayasa-212 2.257486e-01
## 213 cumayasa-213 5.867569e-02
## 214 cumayasa-214 6.252814e-02
## 215 cumayasa-215 -1.088961e-01
## 216 cumayasa-216 1.292958e-01
## 217 cumayasa-217 4.068547e-02
## 218 cumayasa-218 3.837338e-02
## 219 cumayasa-219 1.825995e-02
## 220 cumayasa-220 4.591540e-02
cumayasa_conv_prof$dimensionlessprofiles
## Error: Aesthetics must be either length 1 or the same as the data (48400): label
## Tabla dx/dy, tanto en metros como adimensional. Útiles para construir perfiles por cuenta propia
cumayasa_conv_prof$lengthzdata %>% tibble::as.tibble()
## Warning: `as.tibble()` is deprecated, use `as_tibble()` (but mind the new semantics).
## This warning is displayed once per session.
## # A tibble: 40,356 x 4
## stream length z rowname
## <fct> <dbl> <dbl> <int>
## 1 cumayasa-1 0 0.638 1
## 2 cumayasa-1 12.5 0.658 2
## 3 cumayasa-1 17.7 0.667 3
## 4 cumayasa-1 30.2 0.687 4
## 5 cumayasa-1 42.6 0.707 5
## 6 cumayasa-1 55.1 0.727 6
## 7 cumayasa-1 60.3 0.736 7
## 8 cumayasa-1 72.8 0.756 8
## 9 cumayasa-1 85.3 0.776 9
## 10 cumayasa-1 97.8 0.797 10
## # … with 40,346 more rows
cumayasa_conv_prof$lengthzdatadmnls %>% tibble::as.tibble()
## # A tibble: 40,356 x 6
## stream length z rowname length.dmnls z.dmnls
## <fct> <dbl> <dbl> <int> <dbl> <dbl>
## 1 cumayasa-1 0 0.638 1 0 0
## 2 cumayasa-1 12.5 0.658 2 0.000228 0.000104
## 3 cumayasa-1 17.7 0.667 3 0.000322 0.000147
## 4 cumayasa-1 30.2 0.687 4 0.000551 0.000251
## 5 cumayasa-1 42.6 0.707 5 0.000779 0.000356
## 6 cumayasa-1 55.1 0.727 6 0.00101 0.000460
## 7 cumayasa-1 60.3 0.736 7 0.00110 0.000503
## 8 cumayasa-1 72.8 0.756 8 0.00133 0.000607
## 9 cumayasa-1 85.3 0.776 9 0.00156 0.000711
## 10 cumayasa-1 97.8 0.797 10 0.00179 0.000815
## # … with 40,346 more rows
#Parámetros de cuenca con r.basin ----
# Convertir a números enteros la extensión y la resolución del DEM
dem_usado_en_region <- readRAST('dem')
## Creating BIL support files...
## Exporting raster as floating values (bytes=8)
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
library(raster)
dem_usado_en_region_r <- raster(dem_usado_en_region)
rawextent <- extent(dem_usado_en_region_r)
rawextent
## class : Extent
## xmin : 424836.8
## xmax : 508908
## ymin : 2029064
## ymax : 2084083
devtools::source_url('https://raw.githubusercontent.com/geofis/rgrass/master/integerextent.R')
## Error in curl::curl_fetch_memory(url, handle = handle): Error in the HTTP2 framing layer
devtools::source_url('https://raw.githubusercontent.com/geofis/rgrass/master/xyvector.R')
## SHA-1 hash of file is 89fa5ae436d9a7d7a0c799b789c560eb5e421cfd
newextent <- intext(e = rawextent, r = 90, type = 'inner')
newextent
## class : Extent
## xmin : 424890
## xmax : 508860
## ymin : 2029140
## ymax : 2084040
gdalUtils::gdalwarp(
srcfile = 'dem-cuencas-brujuelas-cumayasa.tif',
dstfile = 'demint.tif',
te = xyvector(newextent),
tr = c(90,90),
r = 'bilinear',
overwrite = T
)
## NULL
## Importar a sesión de GRASS
rutademint <- 'demint.tif'
execGRASS(
"g.proj",
flags = c('t','c'),
georef=rutademint)
## Projection information updated
gmeta()
## gisdbase /home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test
## location cumayasa
## mapset PERMANENT
## rows 4405
## columns 6731
## north 2084083
## south 2029064
## west 424836.8
## east 508908
## nsres 12.49016
## ewres 12.49016
## projection +proj=utm +no_defs +zone=19 +a=6378137 +rf=298.257223563
## +towgs84=0.000,0.000,0.000 +type=crs +to_meter=1
execGRASS(
"r.in.gdal",
flags='overwrite',
parameters=list(
input=rutademint,
output="demint"
)
)
## Importing raster map <demint>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
execGRASS(
"g.region",
parameters=list(
raster = "demint",
align = "demint"
)
)
gmeta()
## gisdbase /home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test
## location cumayasa
## mapset PERMANENT
## rows 610
## columns 933
## north 2084040
## south 2029140
## west 424890
## east 508860
## nsres 90
## ewres 90
## projection +proj=utm +no_defs +zone=19 +a=6378137 +rf=298.257223563
## +towgs84=0.000,0.000,0.000 +type=crs +to_meter=1
execGRASS(
'g.list',
flags = 't',
parameters = list(
type = c('raster', 'vector')
)
)
## raster/LfpNetwork-flds-cumayasa
## raster/LfpNetwork-outlet-cumayasa
## raster/MASK
## raster/accum-de-rwshed
## raster/basins
## raster/cuenca_cumayasa
## raster/cuenca_cumayasa1
## raster/cuenca_cumayasa2
## raster/cuenca_cumayasa3
## raster/cuenca_cumayasa4
## raster/cuenca_cumayasa5
## raster/cuenca_cumayasa6
## raster/dem
## raster/dem_tallado
## raster/demint
## raster/depresiones_todas
## raster/drainage-dir-de-rwshed
## raster/half-basins
## raster/order-hack-gravelius
## raster/order-horton
## raster/order-shreve
## raster/order-strahler
## raster/order-topology
## raster/red_mtn50k_cleaned_largos
## raster/rstrm_cumayasa
## raster/rstrm_direccion
## raster/stddem
## raster/stddemburn
## raster/stream-de-rwshed
## vector/LfpNetwork_lfp_all_final_cumayasa
## vector/LfpNetwork_lfp_cumayasa
## vector/LfpNetwork_outlet_cumayasa
## vector/LfpNetwork_tributaries_cumayasa
## vector/LfpNetwork_tributaries_preconf_cumayasa
## vector/cuenca_cumayasa
## vector/cuenca_cumayasa1
## vector/cuenca_cumayasa2
## vector/cuenca_cumayasa3
## vector/cuenca_cumayasa4
## vector/cuenca_cumayasa5
## vector/cuenca_cumayasa6
## vector/cuenca_cumayasa_buffer
## vector/dem_extent
## vector/depresiones_para_editar
## vector/order_all
## vector/red_mtn50k_cleaned_largos
## vector/rstrm_cumayasa
## Generar red de drenaje para obtener coordenada posteriormente
execGRASS(
"r.stream.extract",
flags = c('overwrite','quiet'),
parameters = list(
elevation = 'demint',
threshold = 80,
stream_raster = 'stream-de-rstr',
stream_vector = 'stream_de_rstr'
)
)
execGRASS(
'g.list',
flags = 't',
parameters = list(
type = c('raster', 'vector')
)
)
## raster/LfpNetwork-flds-cumayasa
## raster/LfpNetwork-outlet-cumayasa
## raster/MASK
## raster/accum-de-rwshed
## raster/basins
## raster/cuenca_cumayasa
## raster/cuenca_cumayasa1
## raster/cuenca_cumayasa2
## raster/cuenca_cumayasa3
## raster/cuenca_cumayasa4
## raster/cuenca_cumayasa5
## raster/cuenca_cumayasa6
## raster/dem
## raster/dem_tallado
## raster/demint
## raster/depresiones_todas
## raster/drainage-dir-de-rwshed
## raster/half-basins
## raster/order-hack-gravelius
## raster/order-horton
## raster/order-shreve
## raster/order-strahler
## raster/order-topology
## raster/red_mtn50k_cleaned_largos
## raster/rstrm_cumayasa
## raster/rstrm_direccion
## raster/stddem
## raster/stddemburn
## raster/stream-de-rstr
## raster/stream-de-rwshed
## vector/LfpNetwork_lfp_all_final_cumayasa
## vector/LfpNetwork_lfp_cumayasa
## vector/LfpNetwork_outlet_cumayasa
## vector/LfpNetwork_tributaries_cumayasa
## vector/LfpNetwork_tributaries_preconf_cumayasa
## vector/cuenca_cumayasa
## vector/cuenca_cumayasa1
## vector/cuenca_cumayasa2
## vector/cuenca_cumayasa3
## vector/cuenca_cumayasa4
## vector/cuenca_cumayasa5
## vector/cuenca_cumayasa6
## vector/cuenca_cumayasa_buffer
## vector/dem_extent
## vector/depresiones_para_editar
## vector/order_all
## vector/red_mtn50k_cleaned_largos
## vector/rstrm_cumayasa
## vector/stream_de_rstr
## Obtener coordenada
library(sp)
use_sp()
library(mapview)
netw <- spTransform(
readVECT('stream_de_rstr'),
CRSobj = CRS("+init=epsg:4326"))
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=stream_de_rstr type=line layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/48.0.gpkg output_layer=stream_de_rstr format=GPKG
## produced at least one warning during execution:
## WARNING: 153 points found, but not requested to be exported. Verify 'type'
## parameter.
## Exporting 150 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 150 features (Line String type) written to
## <stream_de_rstr> (GPKG format).
## WARNING: 153 points found, but not requested to be exported. Verify 'type'
## parameter.
## Exporting 150 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 150 features (Line String type) written to
## <stream_de_rstr> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/48.0.gpkg", layer: "stream_de_rstr"
## with 150 features
## It has 4 fields
mapview(netw, col.regions = 'blue', legend = FALSE)
## Warning: sf layer has inconsistent datum (+proj=longlat +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +no_defs).
## Need '+proj=longlat +datum=WGS84'

## Transformar coordenada a EPSG:32619 como número entero
source('my-trans.R')
outlet <- as.integer(my_trans(c(-69.08440, 18.40128))) #no se puede usar las mismas coordenadas que el LFP
## Ejecutar `r.basin`
pref <- 'rbasin_cumayasa'
execGRASS(
"r.basin",
flags = 'overwrite',
parameters = list(
map = 'demint',
prefix = pref,
coordinates = outlet,
threshold = 80,
dir = 'salidas-rbasin/cumayasa'
)
)
## Warning in execGRASS("r.basin", flags = "overwrite", parameters = list(map = "demint", : The command:
## r.basin --overwrite map=demint prefix=rbasin_cumayasa coordinates=491085,2034584 threshold=80 dir=salidas-rbasin/cumayasa
## produced at least one warning during execution:
## SECTION 1 beginning: Initiating Variables. 4 sections total.
## SECTION 1a: Mark masked and NULL cells
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## SECTION 1b: Determining Offmap Flow.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## SECTION 2: A* Search.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## SECTION 3a: Accumulating Surface Flow with MFD.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## SECTION 3b: Adjusting drainage directions.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98%SECTION 4: Closing Maps.
## Closing accumulation map
## Writing out only positive flow accumulation values.
## Cells with a likely underestimate for flow accumulation can no longer be
## identified.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Closing flow direction map
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98%Loading input raster maps...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Initializing A* search...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## A* Search...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Extracting streams...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Thinning stream segments...
## 0% 33% 66% 100%
## Writing output raster maps...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Scanning input for column types...
## Number of columns: 3
## Number of rows: 1
## Importing points...
## 0% 100%
## Populating table...
## Building topology for vector map
## <rbasin_cumayasa_demint_outlet@PERMANENT>...
## Registering primitives...
##
## Reading raster map <rbasin_cumayasa_demint_stream_e>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map
## <rbasin_cumayasa_demint_outlet_snap@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Memory swap calculation (may take some time)...
## Reading raster map <rbasin_cumayasa_demint_drainage_e>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Calculating basins using vector point map...
## Delineating basins for 1 outlets...
## 0%
## ------------------------------
## Output of r.stream.stats:
##
## Summary:
## Max order | Tot.N.str. | Tot.str.len. | Tot.area. | Dr.dens. | Str.freq.
## (num) | (num) | (km) | (km2) | (km/km2) | (num/km2)
## 4 | 91 | 205.9924 | 234.1710 | 0.8797 | 0.3886
##
## Stream ratios based on regression coefficient:
## Bif.rt. | Len.rt. | Area.rt. | Slo.rt. | Grd.rt.
## 4.1949 | 2.7515 | 5.0045 | 1.1809 | 1.6383
##
## Averaged stream ratios with standard deviations:
## Bif.rt. | Len.rt. | Area.rt. | Slo.rt. | Grd.rt.
## 4.4167 | 2.7504 | 3.2532 | 1.2276 | 1.6528
## 1.6646 | 0.1721 | 2.8230 | 0.5992 | 0.6922
##
## Order | Avg.len | Avg.ar | Avg.sl | Avg.grad. | Avg.el.dif
## num | (km) | (km2) | (m/m) | (m/m) | (m)
## 1 | 1.3926 | 1.8298 | 0.0111 | 0.0081 | 10.1104
## 2 | 3.5659 | 9.2549 | 0.0093 | 0.0068 | 17.0963
## 3 | 9.9648 | 43.5159 | 0.0050 | 0.0028 | 26.5470
## 4 | 28.8609 | 234.1710 | 0.0078 | 0.0021 | 61.0481
##
## Order | Std.len | Std.ar | Std.sl | Std.grad. | Std.el.dif
## num | (km) | (km2) | (m/m) | (m/m) | (m)
## 1 | 1.2846 | 1.5225 | 0.0103 | 0.0075 | 9.4951
## 2 | 3.0403 | 8.0003 | 0.0079 | 0.0060 | 8.5283
## 3 | 2.6575 | 8.7871 | 0.0005 | 0.0007 | 0.6836
## 4 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | 0.0000
##
## Order | N.streams | Tot.len (km) | Tot.area (km2)
## 1 | 75 | 104.4458 | 137.2383
## 2 | 12 | 42.7912 | 111.0591
## 3 | 3 | 29.8945 | 130.5477
## 4 | 1 | 28.8609 | 234.1710
##
## Order | Bif.rt. | Len.rt. | Area.rt. | Slo.rt. | Grd.rt. | d.dens. | str.freq.
## 1 | 6.2500 | 2.5606 | 0.0000 | 1.1973 | 1.1914 | 0.7611 | 0.5465
## 2 | 4.0000 | 2.7945 | 5.0578 | 1.8414 | 2.4487 | 0.3853 | 0.1081
## 3 | 3.0000 | 2.8963 | 4.7019 | 0.6441 | 1.3183 | 0.2290 | 0.0230
## 4 | 0.0000 | 0.0000 | 5.3813 | 0.0000 | 0.0000 | 0.1232 | 0.0043
##
## SECTION 1 beginning: Initiating Variables. 4 sections total.
## SECTION 1a: Mark masked and NULL cells
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## SECTION 1b: Determining Offmap Flow.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## SECTION 2: A* Search.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## SECTION 3a: Accumulating Surface Flow with MFD.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## SECTION 3b: Adjusting drainage directions.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98%SECTION 4: Closing Maps.
## Closing accumulation map
## Writing out only positive flow accumulation values.
## Cells with a likely underestimate for flow accumulation can no longer be
## identified.
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Closing flow direction map
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98%Loading input raster maps...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Initializing A* search...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## A* Search...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Extracting streams...
## 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% 22% 24% 26% 28% 30% 32% 34% 36% 38% 40% 42% 44% 46% 48% 50% 52% 54% 56% 58% 60% 62% 64% 66% 68% 70% 72% 74% 76% 78% 80% 82% 84% 86% 88% 90% 92% 94% 96% 98% 100%
## Thinning stream segments...
## 0% 33% 66% 100%
## Writing output raster maps...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Scanning input for column types...
## Number of columns: 3
## Number of rows: 1
## Importing points...
## 0% 100%
## Populating table...
## Building topology for vector map
## <rbasin_cumayasa_demint_outlet@PERMANENT>...
## Registering primitives...
##
## Reading raster map <rbasin_cumayasa_demint_stream_e>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Building topology for vector map
## <rbasin_cumayasa_demint_outlet_snap@PERMANENT>...
## Registering primitives...
##
## Reading features...
## 100%
## Writing raster map...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## v.to.rast complete.
## Memory swap calculation (may take some time)...
## Reading raster map <rbasin_cumayasa_demint_drainage_e>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Calculating basins using vector point map...
## Delineating basins for 1 outlets...
## 0% 100%
## Writing raster map <rbasin_cumayasa_demint_basin>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Delineation of basin done
## Rename raster <tmp> to <rbasin_cumayasa_demint_accumulation>
## Rename raster <tmp> to <rbasin_cumayasa_demint_drainage>
## Rename raster <tmp> to <rbasin_cumayasa_demint_drainage_e>
## Rename raster <tmp> to <rbasin_cumayasa_demint_stream_e>
## Raster map <rbasin_cumayasa_demint_stream_e> - 610 rows X 933 columns
## Bounding box: l = 683, r = 873, t = 204, b = 551
## Pass number 1
## Deleted 16 pixels
## Pass number 2
## Deleted 0 pixels
## Thinning completed successfully.
## Output map 610 rows X 933 columns
## Window 610 rows X 933 columns
## Extracting lines...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## 100%
## WARNING: Memory leak: 4 points are still in use
## Building topology for vector map
## <rbasin_cumayasa_demint_network@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Aspect raster map <rbasin_cumayasa_demint_aspect> complete
## Slope raster map <rbasin_cumayasa_demint_slope> complete
## Extracting areas...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Writing areas...
## 0% 4% 8% 12% 16% 20% 24% 28% 32% 36% 40% 44% 48% 52% 56% 60% 64% 68% 72% 76% 80% 84% 88% 92% 96% 100%
## Updating attributes...
## 0% 100%
## Building topology for vector map
## <rbasin_cumayasa_demint_basin@PERMANENT>...
## Registering primitives...
##
## Building areas...
## 0% 100%
## Attaching islands...
## 0% 100%
## Attaching centroids...
## 0% 100%
## r.to.vect complete.
## WARNING: Values in column <perimeter> will be overwritten
## Reading areas...
## 100%
## Updating database...
## 0% 100%
## 1 categories read from vector map (layer 1)
## 1 records selected from table (layer 1)
## 1 categories read from vector map exist in selection from table
## 1 records updated/inserted (layer 1)
## Reading areas...
## 100%
## WARNING: Values in column <area> will be overwritten
## Reading areas...
## 100%
## Updating database...
## 0% 100%
## 1 categories read from vector map (layer 1)
## 1 records selected from table (layer 1)
## 1 categories read from vector map exist in selection from table
## 1 records updated/inserted (layer 1)
## Reading areas...
## 100%
## Creating rbasin_cumayasa_demint_hack
## Memory swap calculation (may take some time)...
## Reading raster map <rbasin_cumayasa_demint_stream_e>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rbasin_cumayasa_demint_drainage_e>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding longest streams...
## 0% 4% 8% 12% 16% 20% 24% 28% 32% 36% 40% 44% 48% 52% 56% 60% 64% 68% 72% 76% 80% 84% 88% 92% 96% 100%
## Calculating Strahler's stream order...
## Calculating Hortons's stream order...
## Calculating Shreve's stream magnitude, Scheidegger's consistent integer and
## Drwal's streams hierarchy (old style)...
## Calculating Hack's main streams and topological dimension...
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <rbasin_cumayasa_demint_r_outlet>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rbasin_cumayasa_demint_drainage_e>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Calculate downstream parameters...
## 0% 100%
## Writing raster map <rbasin_cumayasa_demint_dist2out>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Calculating segments in direction <DOWNSTREAM> (may take some time)...
## Reading raster map <rbasin_cumayasa_demint_stream_e>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rbasin_cumayasa_demint_drainage>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Finding nodes...
## Reading raster map <r_elevation_crop>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Calculate downstream parameters...
## 0% 50% 100%
## Writing raster map <rbasin_cumayasa_demint_hillslope_distance>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## First pass
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Writing output map
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## r.stats.zonal done
## r.info done
## r.mapcalc done
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## r.volume done
## g.region done
## Rectangle containing basin done
## Directing vector done
## Prevalent orientation done
## Compactness coefficient done
## Circularity ratio done
## Raster map <rbasin_cumayasa_demint_mainchannel> - 358 rows X 207 columns
## Bounding box: l = 25, r = 184, t = 12, b = 359
## Pass number 1
## Deleted 0 pixels
## Thinning completed successfully.
## Output map 358 rows X 207 columns
## Window 358 rows X 207 columns
## Using native format
## Extracting lines...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## 100%
## Building topology for vector map
## <rbasin_cumayasa_demint_mainchannel@PERMANENT>...
## Registering primitives...
##
## One primitive registered
## 255 vertices registered
## Topology was built
## Number of nodes: 2
## Number of primitives: 1
## Number of points: 0
## Number of lines: 1
## Number of boundaries: 0
## Number of centroids: 0
## Number of areas: 0
## Number of isles: 0
## r.to.vect complete.
## WARNING: Values in column <cat> will be overwritten
## Reading features...
## 0% 100%
## Updating database...
## 0% 100%
## 1 categories read from vector map (layer 1)
## 1 categories read from vector map don't exist in selection from table
## 1 records updated/inserted (layer 1)
## WARNING: Values in column <x> will be overwritten
## WARNING: Values in column <y> will be overwritten
## Reading features...
## 0% 100%
## Updating database...
## 0% 100%
## 1 categories read from vector map (layer 1)
## 1 records selected from table (layer 1)
## 1 categories read from vector map exist in selection from table
## 1 records updated/inserted (layer 1)
## Fetching data...
## Raster map <rbasin_cumayasa_demint_mainchannel_dim> - 358 rows X 207
## columns
## Bounding box: l = 25, r = 184, t = 12, b = 359
## Pass number 1
## Deleted 0 pixels
## Thinning completed successfully.
## Output map 358 rows X 207 columns
## Window 358 rows X 207 columns
## Using native format
## Extracting lines...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## 100%
## Updating attributes...
## 0% 5% 11% 17% 23% 29% 35% 41% 47% 52% 58% 64% 70% 76% 82% 88% 94% 100%
## Building topology for vector map
## <rbasin_cumayasa_demint_mainchannel_dim@PERMANENT>...
## Registering primitives...
##
## 54 primitives registered
## 329 vertices registered
## Topology was built
## Number of nodes: 43
## Number of primitives: 54
## Number of points: 0
## Number of lines: 54
## Number of boundaries: 0
## Number of centroids: 0
## Number of areas: 0
## Number of isles: 0
## r.to.vect complete.
## doing v.to.points
## 3% 7% 11% 14% 18% 22% 25% 29% 33% 37% 40% 44% 48% 51% 55% 59% 62% 66% 70% 74% 77% 81% 85% 88% 92% 96% 100%
## Building topology for vector map
## <rbasin_cumayasa_demint_mainchannel_dim_point@PERMANENT>...
## Registering primitives...
##
## v.to.points complete. 556 points written to output vector map.
## First pass
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Writing output map
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Raster map <rbasin_cumayasa_demint_ord_1> - 358 rows X 207 columns
## Bounding box: l = 13, r = 201, t = 12, b = 353
## Pass number 1
## Deleted 3 pixels
## Pass number 2
## Deleted 0 pixels
## Thinning completed successfully.
## Output map 358 rows X 207 columns
## Window 358 rows X 207 columns
## Extracting lines...
## 2% 5% 8% 11% 14% 17% 20% 23% 26% 29% 32% 35% 38% 41% 44% 47% 50% 53% 56% 59% 62% 65% 68% 71% 74% 77% 80% 83% 86% 89% 92% 95% 98% 100%
## 100%
## Updating attributes...
## 0% 100%
## Building topology for vector map
## <rbasin_cumayasa_demint_ord_1@PERMANENT>...
## Registering primitives...
##
## r.to.vect complete.
## Memory swap calculation (may take some time)...
## Reading raster map <rbasin_cumayasa_demint_strahler>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <rbasin_cumayasa_demint_drainage_e>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## Reading raster map <r_elevation_crop>...
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
## db.in.ogr: importing CSV table
## <salidas-rbasin/cumayasa/rbasin_cumayasa_demint_parametersT.csv>...
## Imported table <rbasin_summary> with 1 rows
## Forcing ...
##
## ----------------------------------
## Morphometric parameters of basin :
## ----------------------------------
## Easting Centroid of basin : 493605.00
## Northing Centroid of Basin : 2053575.00
## Rectangle containing basin N-W : 485370 , 2066760
## Rectangle containing basin S-E : 504000 , 2034540
## Area of basin [km^2] : 234.1679625
## Perimeter of basin [km] : 121.231340828509
## Max Elevation [m s.l.m.] : 284.710767369222
## Min Elevation [m s.l.m.]: 0.466042861816787
## Elevation Difference [m]: 284.24472450740524
## Mean Elevation [m s.l.m.]: 83.44418
## Mean Slope : 1.65
## Length of Directing Vector [km] : 19.157465411687422
## Prevalent Orientation [degree from north, counterclockwise] :
## 1.4388725862785985
## Compactness Coefficient : 7.020953725195308
## Circularity Ratio : 0.20022003093201096
## Topological Diameter : 54.0
## Elongation Ratio : 0.3599378389563137
## Shape Factor : 4.8813076914352305
## Concentration Time (Giandotti, 1934) [hr] : 9.873387417560144
## Length of Mainchannel [km] : 47.972383079
## Mean slope of mainchannel [percent] : 1.160666
## Mean hillslope length [m] : 66.72794
## Magnitudo : 65.0
## Max order (Strahler) : 4
## Number of streams : 91
## Total Stream Length [km] : 205.9924
## First order stream frequency : 0.27757853510810643
## Drainage Density [km/km^2] : 0.8796779790062016
## Bifurcation Ratio (Horton) : 4.1949
## Length Ratio (Horton) : 2.7515
## Area ratio (Horton) : 5.0045
## Slope ratio (Horton): 1.1809
## ------------------------------
##
## Done!
## Removing region definition <original>
execGRASS(
'g.list',
flags = 't',
parameters = list(
type = c('raster', 'vector')
)
)
## raster/LfpNetwork-flds-cumayasa
## raster/LfpNetwork-outlet-cumayasa
## raster/MASK
## raster/accum-de-rwshed
## raster/basins
## raster/cuenca_cumayasa
## raster/cuenca_cumayasa1
## raster/cuenca_cumayasa2
## raster/cuenca_cumayasa3
## raster/cuenca_cumayasa4
## raster/cuenca_cumayasa5
## raster/cuenca_cumayasa6
## raster/dem
## raster/dem_tallado
## raster/demint
## raster/depresiones_todas
## raster/drainage-dir-de-rwshed
## raster/half-basins
## raster/order-hack-gravelius
## raster/order-horton
## raster/order-shreve
## raster/order-strahler
## raster/order-topology
## raster/rbasin_cumayasa_demint_accumulation
## raster/rbasin_cumayasa_demint_aspect
## raster/rbasin_cumayasa_demint_dist2out
## raster/rbasin_cumayasa_demint_drainage
## raster/rbasin_cumayasa_demint_hack
## raster/rbasin_cumayasa_demint_hillslope_distance
## raster/rbasin_cumayasa_demint_horton
## raster/rbasin_cumayasa_demint_shreve
## raster/rbasin_cumayasa_demint_slope
## raster/rbasin_cumayasa_demint_strahler
## raster/red_mtn50k_cleaned_largos
## raster/rstrm_cumayasa
## raster/rstrm_direccion
## raster/stddem
## raster/stddemburn
## raster/stream-de-rstr
## raster/stream-de-rwshed
## vector/LfpNetwork_lfp_all_final_cumayasa
## vector/LfpNetwork_lfp_cumayasa
## vector/LfpNetwork_outlet_cumayasa
## vector/LfpNetwork_tributaries_cumayasa
## vector/LfpNetwork_tributaries_preconf_cumayasa
## vector/cuenca_cumayasa
## vector/cuenca_cumayasa1
## vector/cuenca_cumayasa2
## vector/cuenca_cumayasa3
## vector/cuenca_cumayasa4
## vector/cuenca_cumayasa5
## vector/cuenca_cumayasa6
## vector/cuenca_cumayasa_buffer
## vector/dem_extent
## vector/depresiones_para_editar
## vector/order_all
## vector/rbasin_cumayasa_demint_basin
## vector/rbasin_cumayasa_demint_mainchannel
## vector/rbasin_cumayasa_demint_network
## vector/rbasin_cumayasa_demint_outlet
## vector/rbasin_cumayasa_demint_outlet_snap
## vector/red_mtn50k_cleaned_largos
## vector/rstrm_cumayasa
## vector/stream_de_rstr
#> Si `r.basin` arrojara error (sólo en el caso de error, no en caso de advertencia), ejecutar este bloque para borrar las salidas anteriores y reejecutar el `r.basin`:
#execGRASS(
# "g.remove",
#flags = 'f',
#parameters = list(
# type = c('raster','vector'),
#pattern = paste0(pref, '*')
#)
#)
## Cargar los vectoriales transformados a EPSG:4326 para visualizar en leaflet
rbnetw <- spTransform(
readVECT('rbasin_cumayasa_demint_network'),
CRSobj = CRS("+init=epsg:4326"))
## Exporting 224 features...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## v.out.ogr complete. 224 features (Line String type) written to
## <rbasin_cumayasa_demint_network> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/816.0.gpkg", layer: "rbasin_cumayasa_demint_network"
## with 224 features
## It has 3 fields
rbnetw
## class : SpatialLinesDataFrame
## features : 224
## extent : -69.13053, -68.96847, 18.40128, 18.68356 (xmin, xmax, ymin, ymax)
## crs : +init=epsg:4326 +proj=longlat +datum=WGS84 +no_defs +ellps=WGS84 +towgs84=0,0,0
## variables : 3
## names : cat, value, label
## min values : 1, 2,
## max values : 224, 150,
rbmain <- spTransform(
readVECT('rbasin_cumayasa_demint_mainchannel'),
CRSobj = CRS("+init=epsg:4326"))
## Exporting 1 feature...
## 100%
## v.out.ogr complete. 1 feature (Line String type) written to
## <rbasin_cumayasa_demint_mainchannel> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/664.0.gpkg", layer: "rbasin_cumayasa_demint_mainchannel"
## with 1 features
## It has 3 fields
rbmain
## class : SpatialLinesDataFrame
## features : 1
## extent : -69.11854, -68.98298, 18.40128, 18.68356 (xmin, xmax, ymin, ymax)
## crs : +init=epsg:4326 +proj=longlat +datum=WGS84 +no_defs +ellps=WGS84 +towgs84=0,0,0
## variables : 3
## names : cat, value, label
## value : 1, 1,
rbbasin <- spTransform(
readVECT('rbasin_cumayasa_demint_basin'),
CRSobj = CRS("+init=epsg:4326"))
## Exporting 1 area (may take some time)...
## 100%
## v.out.ogr complete. 1 feature (Polygon type) written to
## <rbasin_cumayasa_demint_basin> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/837.0.gpkg", layer: "rbasin_cumayasa_demint_basin"
## with 1 features
## It has 4 fields
rbbasin
## class : SpatialPolygonsDataFrame
## features : 1
## extent : -69.13863, -68.96207, 18.40088, 18.6921 (xmin, xmax, ymin, ymax)
## crs : +init=epsg:4326 +proj=longlat +datum=WGS84 +no_defs +ellps=WGS84 +towgs84=0,0,0
## variables : 4
## names : cat, label, area, perimeter
## value : 1, , 234.167962, 121.231341
library(leaflet)
leaflet() %>%
addProviderTiles(providers$Stamen.Terrain, group = 'terrain') %>%
addPolylines(data = rbnetw, weight = 3, opacity = 0.7) %>%
addPolylines(data = rbmain, weight = 3, opacity = 0.7, color = 'red') %>%
addPolygons(data = rbbasin) %>%
leafem::addHomeButton(extent(rbbasin), 'Ver cuenca')

## Explorar los parámetros de cuenca
library(readr)
rbcumayasapar1 <- read_csv("salidas-rbasin/cumayasa/rbasin_cumayasa_demint_parametersT.csv")
## Parsed with column specification:
## cols(
## .default = col_double(),
## Rectangle_containing_basin_N_W = col_character(),
## Rectangle_containing_basin_S_E = col_character()
## )
## See spec(...) for full column specifications.
rbcumayasapar1 %>% tibble::as_tibble()
## # A tibble: 1 x 34
## x y Easting_Centroi… Northing_Centro… Rectangle_conta…
## <dbl> <dbl> <dbl> <dbl> <chr>
## 1 491085 2.03e6 493605 2053575 ('485370', '206…
## # … with 29 more variables: Rectangle_containing_basin_S_E <chr>,
## # Area_of_basin_km2 <dbl>, Perimeter_of_basin_km <dbl>,
## # Max_Elevation <dbl>, Min_Elevation <dbl>, Elevation_Difference <dbl>,
## # Mean_Elevation <dbl>, Mean_Slope <dbl>,
## # Length_of_Directing_Vector_km <dbl>,
## # Prevalent_Orientation_deg_from_north_ccw <dbl>,
## # Compactness_Coefficient <dbl>, Circularity_Ratio <dbl>,
## # Topological_Diameter <dbl>, Elongation_Ratio <dbl>,
## # Shape_Factor <dbl>, Concentration_Time_hr <dbl>,
## # Length_of_Mainchannel_km <dbl>,
## # Mean_slope_of_mainchannel_percent <dbl>,
## # Mean_hillslope_length_m <dbl>, Magnitudo <dbl>,
## # Max_order_Strahler <dbl>, Number_of_streams <dbl>,
## # Total_Stream_Length_km <dbl>, First_order_stream_frequency <dbl>,
## # Drainage_Density_km_over_km2 <dbl>, Bifurcation_Ratio_Horton <dbl>,
## # Length_Ratio_Horton <dbl>, Area_ratio_Horton <dbl>,
## # Slope_ratio_Horton <dbl>
rbcumayasapar2 <- read_csv(
"salidas-rbasin/cumayasa/rbasin_cumayasa_demint_parametersT.csv",
skip=2, col_names = c('Parameter', 'Value'))
## Parsed with column specification:
## cols(
## Parameter = col_character(),
## Value = col_character()
## )
rbcumayasapar2 %>% print(n=Inf)
## # A tibble: 0 x 2
## # … with 2 variables: Parameter <chr>, Value <chr>
#Curva e integral hipsométrica ----
# Imprimir lista de mapas ráster y vectoriales dentro en la región/localización activa
#* Nótese que los paquetes requeridos en esta sessión (`rgrass7`, `raster`, `leaflet`, `leafem`), fueron en el bloque anterior al ejecutarse el código contenido en el archivo `orden-de-red.Rmd`. Igualmente, dicho bloque de código creó todos los objetos necesarios para realizar este tutorial.
execGRASS(
'g.list',
flags = 't',
parameters = list(
type = c('raster', 'vector')
)
)
## raster/LfpNetwork-flds-cumayasa
## raster/LfpNetwork-outlet-cumayasa
## raster/MASK
## raster/accum-de-rwshed
## raster/basins
## raster/cuenca_cumayasa
## raster/cuenca_cumayasa1
## raster/cuenca_cumayasa2
## raster/cuenca_cumayasa3
## raster/cuenca_cumayasa4
## raster/cuenca_cumayasa5
## raster/cuenca_cumayasa6
## raster/dem
## raster/dem_tallado
## raster/demint
## raster/depresiones_todas
## raster/drainage-dir-de-rwshed
## raster/half-basins
## raster/order-hack-gravelius
## raster/order-horton
## raster/order-shreve
## raster/order-strahler
## raster/order-topology
## raster/rbasin_cumayasa_demint_accumulation
## raster/rbasin_cumayasa_demint_aspect
## raster/rbasin_cumayasa_demint_dist2out
## raster/rbasin_cumayasa_demint_drainage
## raster/rbasin_cumayasa_demint_hack
## raster/rbasin_cumayasa_demint_hillslope_distance
## raster/rbasin_cumayasa_demint_horton
## raster/rbasin_cumayasa_demint_shreve
## raster/rbasin_cumayasa_demint_slope
## raster/rbasin_cumayasa_demint_strahler
## raster/red_mtn50k_cleaned_largos
## raster/rstrm_cumayasa
## raster/rstrm_direccion
## raster/stddem
## raster/stddemburn
## raster/stream-de-rstr
## raster/stream-de-rwshed
## vector/LfpNetwork_lfp_all_final_cumayasa
## vector/LfpNetwork_lfp_cumayasa
## vector/LfpNetwork_outlet_cumayasa
## vector/LfpNetwork_tributaries_cumayasa
## vector/LfpNetwork_tributaries_preconf_cumayasa
## vector/cuenca_cumayasa
## vector/cuenca_cumayasa1
## vector/cuenca_cumayasa2
## vector/cuenca_cumayasa3
## vector/cuenca_cumayasa4
## vector/cuenca_cumayasa5
## vector/cuenca_cumayasa6
## vector/cuenca_cumayasa_buffer
## vector/dem_extent
## vector/depresiones_para_editar
## vector/order_all
## vector/rbasin_cumayasa_demint_basin
## vector/rbasin_cumayasa_demint_mainchannel
## vector/rbasin_cumayasa_demint_network
## vector/rbasin_cumayasa_demint_outlet
## vector/rbasin_cumayasa_demint_outlet_snap
## vector/red_mtn50k_cleaned_largos
## vector/rstrm_cumayasa
## vector/stream_de_rstr
## Representar cuencas
library(sp)
use_sp()
library(mapview)
bas2 <- readVECT('cuenca_cumayasa2')
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa2 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/517.0.gpkg output_layer=cuenca_cumayasa2 format=GPKG
## produced at least one warning during execution:
## Exporting 391 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## WARNING: 31 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 360 features (Polygon type) written to
## <cuenca_cumayasa2> (GPKG format).
## Exporting 391 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## WARNING: 31 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 360 features (Polygon type) written to
## <cuenca_cumayasa2> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/517.0.gpkg", layer: "cuenca_cumayasa2"
## with 360 features
## It has 3 fields
bas3 <- readVECT('cuenca_cumayasa3')
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa3 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/829.0.gpkg output_layer=cuenca_cumayasa3 format=GPKG
## produced at least one warning during execution:
## Exporting 78 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 60% 66% 73% 79% 85% 91% 97% 100%
## WARNING: 4 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 74 features (Polygon type) written to
## <cuenca_cumayasa3> (GPKG format).
## Exporting 78 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 60% 66% 73% 79% 85% 91% 97% 100%
## WARNING: 4 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 74 features (Polygon type) written to
## <cuenca_cumayasa3> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/829.0.gpkg", layer: "cuenca_cumayasa3"
## with 74 features
## It has 3 fields
## Curva e integral hipsométrica
devtools::source_url('https://raw.githubusercontent.com/geofis/rgrass/master/integral_hypsometric_curve.R')
## SHA-1 hash of file is b661180be0a2d5ade8c4251793a9da01a6bfc99f
HypsoBasinsOrder2 <- HypsoIntCurve(
basins = 'cuenca_cumayasa2',
dem = 'dem',
labelfield = 'cat',
nrow = 2,
labelsize = 4
)
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa2 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/57.0.gpkg output_layer=cuenca_cumayasa2 format=GPKG
## produced at least one warning during execution:
## Exporting 391 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## WARNING: 31 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 360 features (Polygon type) written to
## <cuenca_cumayasa2> (GPKG format).
## Exporting 391 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 59% 65% 71% 77% 83% 89% 95% 100%
## WARNING: 31 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 360 features (Polygon type) written to
## <cuenca_cumayasa2> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/57.0.gpkg", layer: "cuenca_cumayasa2"
## with 360 features
## It has 3 fields
## Creating BIL support files...
## Exporting raster as floating values (bytes=8)
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
HypsoBasinsOrder2$HypsoInt
## cat hypsoint
## 1 1 0.23434806
## 2 2 0.26466544
## 3 3 0.17336735
## 4 4 0.23593372
## 5 5 0.24606005
## 6 6 0.09831995
## 7 7 0.17213334
## 8 8 0.12179426
## 9 9 0.13367323
## 10 10 0.17526320
## 11 11 0.27624791
## 12 13 0.11430757
## 13 14 0.29929675
## 14 15 0.11160022
## 15 16 0.11090767
## 16 17 0.21252600
## 17 18 0.25483489
## 18 19 0.32742030
## 19 20 0.49465780
## 20 21 0.28958281
## 21 23 0.13614564
## 22 24 0.45539502
## 23 25 0.36101954
## 24 26 0.31863247
## 25 27 0.38034268
## 26 29 0.36586387
## 27 30 0.31014156
## 28 31 0.33360841
## 29 32 0.38437408
## 30 33 0.21684139
## 31 34 0.37453267
## 32 35 0.31708132
## 33 37 0.43002662
## 34 38 0.26601518
## 35 39 0.30058062
## 36 40 0.38733957
## 37 41 0.34454734
## 38 42 0.24063909
## 39 43 0.56666378
## 40 44 0.30480400
## 41 45 0.31690558
## 42 46 0.30589934
## 43 47 0.22469485
## 44 48 0.41880348
## 45 50 0.26095183
## 46 51 0.26530463
## 47 52 0.28361032
## 48 53 0.37104937
## 49 54 0.48062841
## 50 55 0.36119350
## 51 56 0.34404279
## 52 57 0.44481804
## 53 58 0.52762928
## 54 60 0.34116054
## 55 61 0.35145301
## 56 63 0.49234549
## 57 64 0.40250527
## 58 65 0.59132972
## 59 66 0.37544996
## 60 67 0.34982815
## 61 68 0.37254685
## 62 69 0.37757777
## 63 71 0.48489192
## 64 72 0.37292901
## 65 73 0.52105049
## 66 74 0.45123294
## 67 75 0.53653098
## 68 76 0.38340399
## 69 77 0.41983019
## 70 78 0.62053168
## 71 79 0.37149930
## 72 80 0.31233264
## 73 81 0.41793166
## 74 82 0.40683448
## 75 83 0.47963370
## 76 84 0.29765970
## 77 85 0.42613416
## 78 86 0.33243114
## 79 87 0.49350463
## 80 88 0.42658986
## 81 92 0.43088717
## 82 94 0.50170509
## 83 95 0.28710701
## 84 96 0.40992705
## 85 97 0.55680751
## 86 98 0.43859732
## 87 99 0.40045012
## 88 100 0.29729115
## 89 101 0.36349659
## 90 103 0.47435764
## 91 104 0.38706802
## 92 105 0.46454049
## 93 106 0.52143056
## 94 107 0.44223271
## 95 108 0.40099437
## 96 109 0.36733038
## 97 110 0.45930673
## 98 113 0.44789776
## 99 114 0.42144049
## 100 116 0.43153699
## 101 117 0.23074781
## 102 118 0.38059615
## 103 119 0.31428905
## 104 120 0.35818980
## 105 121 0.34784117
## 106 122 0.33637893
## 107 125 0.38655663
## 108 126 0.50523798
## 109 127 0.34450478
## 110 128 0.35379471
## 111 129 0.35575852
## 112 131 0.34286616
## 113 132 0.51776171
## 114 133 0.58045378
## 115 134 0.32280441
## 116 135 0.28939038
## 117 137 0.36628555
## 118 139 0.30254079
## 119 140 0.38266264
## 120 141 0.57576616
## 121 142 0.34576706
## 122 144 0.34109650
## 123 145 0.38847405
## 124 146 0.40367535
## 125 147 0.19034979
## 126 148 0.36444296
## 127 149 0.40567404
## 128 150 0.50267277
## 129 152 0.35712464
## 130 153 0.28105770
## 131 154 0.30391825
## 132 156 0.36996056
## 133 158 0.36219966
## 134 159 0.36477448
## 135 161 0.31913454
## 136 162 0.38515859
## 137 163 0.49171811
## 138 164 0.48701272
## 139 165 0.49470974
## 140 167 0.33137027
## 141 168 0.41312718
## 142 169 0.34752499
## 143 170 0.34619438
## 144 171 0.27462631
## 145 172 0.42350748
## 146 173 0.29146507
## 147 174 0.48685320
## 148 175 0.14901446
## 149 176 0.44074778
## 150 177 0.47097939
## 151 179 0.30779081
## 152 181 0.28101761
## 153 184 0.67747249
## 154 185 0.25464717
## 155 186 0.24013740
## 156 187 0.32619651
## 157 188 0.46089187
## 158 189 0.43813455
## 159 190 0.31340089
## 160 191 0.42260907
## 161 192 0.37938297
## 162 193 0.38039052
## 163 195 0.30536260
## 164 196 0.51239417
## 165 197 0.36238065
## 166 200 0.36663556
## 167 201 0.52544261
## 168 202 0.32983543
## 169 203 0.55891201
## 170 204 0.37673506
## 171 208 0.30176284
## 172 209 0.39411999
## 173 210 0.47530878
## 174 211 0.29736546
## 175 212 0.51578756
## 176 213 0.25434056
## 177 215 0.60663101
## 178 216 0.34967924
## 179 217 0.38542756
## 180 218 0.29917664
## 181 219 0.47640209
## 182 220 0.33779141
## 183 221 0.52652608
## 184 222 0.44010072
## 185 223 0.43501049
## 186 224 0.31830233
## 187 225 0.40939044
## 188 226 0.50217617
## 189 227 0.47081870
## 190 228 0.34485603
## 191 229 0.27124308
## 192 230 0.41321869
## 193 231 0.42888616
## 194 232 0.43377614
## 195 234 0.40655031
## 196 235 0.49445027
## 197 236 0.45623587
## 198 238 0.35264734
## 199 239 0.53393430
## 200 241 0.32822174
## 201 243 0.62233049
## 202 244 0.29908686
## 203 245 0.23264864
## 204 247 0.35611522
## 205 248 0.41153530
## 206 249 0.31050419
## 207 250 0.51196708
## 208 251 0.34160814
## 209 252 0.29147026
## 210 254 0.39250446
## 211 255 0.60440256
## 212 256 0.35476874
## 213 257 0.47376972
## 214 258 0.66815965
## 215 259 0.66369991
## 216 260 0.47484100
## 217 261 0.53202358
## 218 264 0.45315750
## 219 265 0.52821416
## 220 266 0.50911574
## 221 267 0.38296393
## 222 268 0.47520071
## 223 269 0.30033415
## 224 270 0.56392558
## 225 271 0.62782156
## 226 272 0.31641453
## 227 273 0.32814905
## 228 274 0.21467075
## 229 275 0.46576071
## 230 276 0.69104693
## 231 277 0.24089841
## 232 278 0.55642011
## 233 279 0.58941753
## 234 281 0.55069323
## 235 282 0.60448687
## 236 283 0.32300626
## 237 284 0.60528205
## 238 285 0.54495901
## 239 286 0.45244263
## 240 287 0.50055807
## 241 289 0.56340292
## 242 290 0.37250672
## 243 291 0.49165321
## 244 292 0.59332318
## 245 294 0.39911752
## 246 296 0.60770541
## 247 297 0.62881871
## 248 298 0.64652788
## 249 299 0.66727434
## 250 300 0.54285365
## 251 301 0.40837188
## 252 302 0.55811164
## 253 303 0.56981818
## 254 304 0.66332671
## 255 305 0.40319514
## 256 306 0.56037629
## 257 307 0.58585275
## 258 308 0.53707826
## 259 309 0.56006829
## 260 310 0.51835505
## 261 312 0.62485314
## 262 313 0.54334597
## 263 314 0.42379419
## 264 315 0.53309143
## 265 316 0.61156194
## 266 317 0.68281818
## 267 318 0.45366611
## 268 319 0.44956070
## 269 320 0.68533884
## 270 322 0.32889809
## 271 323 0.35910731
## 272 324 0.32304660
## 273 325 0.37584786
## 274 326 0.72372740
## 275 327 0.55005631
## 276 328 0.37538063
## 277 329 0.30559041
## 278 330 0.79159659
## 279 331 0.41614508
## 280 332 0.63299388
## 281 333 0.65404082
## 282 334 0.62830688
## 283 335 0.65932693
## 284 336 0.71544633
## 285 337 0.52880422
## 286 338 0.40032377
## 287 339 0.67026486
## 288 340 0.47468915
## 289 341 0.74036925
## 290 342 0.57359103
## 291 343 0.63793372
## 292 344 0.31081729
## 293 345 0.38334270
## 294 346 0.42937736
## 295 347 0.55970602
## 296 348 0.65491346
## 297 350 0.70066164
## 298 351 0.71827975
## 299 352 0.61929536
## 300 353 0.72854361
## 301 354 0.40834451
## 302 355 0.39563185
## 303 356 0.27016728
## 304 357 0.48714859
## 305 359 0.43252601
## 306 360 0.17364692
HypsoBasinsOrder2$HypsoCurve
## Error: Aesthetics must be either length 1 or the same as the data (93636): label
mapview(bas2, zcol='cat', col.regions = 'blue', legend = FALSE) %>%
addStaticLabels(label = bas2$cat)

HypsoBasinsOrder3 <- HypsoIntCurve(
basins = 'cuenca_cumayasa3',
dem = 'dem',
labelfield = 'cat',
nrow = 1,
labelsize = 4
)
## Warning in execGRASS("v.out.ogr", flags = flags, input = vname, type = type, : The command:
## v.out.ogr --overwrite -e input=cuenca_cumayasa3 type=area layer=1 output=/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/499.0.gpkg output_layer=cuenca_cumayasa3 format=GPKG
## produced at least one warning during execution:
## Exporting 78 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 60% 66% 73% 79% 85% 91% 97% 100%
## WARNING: 4 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 74 features (Polygon type) written to
## <cuenca_cumayasa3> (GPKG format).
## Exporting 78 areas (may take some time)...
## 5% 11% 17% 23% 29% 35% 41% 47% 53% 60% 66% 73% 79% 85% 91% 97% 100%
## WARNING: 4 features without category were skipped. Features without
## category are written only when -c flag is given.
## v.out.ogr complete. 74 features (Polygon type) written to
## <cuenca_cumayasa3> (GPKG format).
## OGR data source with driver: GPKG
## Source: "/home/cinthiavandepool/tesis-brujuelas-cinthia/grass-data-test/cumayasa/PERMANENT/.tmp/rstudioubuntu/499.0.gpkg", layer: "cuenca_cumayasa3"
## with 74 features
## It has 3 fields
## Creating BIL support files...
## Exporting raster as floating values (bytes=8)
## 0% 3% 6% 9% 12% 15% 18% 21% 24% 27% 30% 33% 36% 39% 42% 45% 48% 51% 54% 57% 60% 63% 66% 69% 72% 75% 78% 81% 84% 87% 90% 93% 96% 99% 100%
HypsoBasinsOrder3$HypsoInt
## cat hypsoint
## 1 1 0.18030016
## 2 2 0.11505016
## 3 3 0.08021764
## 4 4 0.09394971
## 5 5 0.30591227
## 6 6 0.37455532
## 7 8 0.39431894
## 8 9 0.36858064
## 9 10 0.28524707
## 10 11 0.38132857
## 11 12 0.47819593
## 12 13 0.33723403
## 13 14 0.35202367
## 14 15 0.50845294
## 15 16 0.30808148
## 16 17 0.43532505
## 17 18 0.33144194
## 18 19 0.51313940
## 19 20 0.27726197
## 20 21 0.27148888
## 21 22 0.40224033
## 22 23 0.51179616
## 23 24 0.36308988
## 24 26 0.34082901
## 25 28 0.43030654
## 26 29 0.36864253
## 27 30 0.29981966
## 28 31 0.45192774
## 29 32 0.33275817
## 30 33 0.29002678
## 31 34 0.40939725
## 32 35 0.38044403
## 33 37 0.41669060
## 34 38 0.46399516
## 35 39 0.26100228
## 36 40 0.31999229
## 37 41 0.52453892
## 38 43 0.56805162
## 39 44 0.36523953
## 40 45 0.56777573
## 41 46 0.46620406
## 42 47 0.58298957
## 43 48 0.57260324
## 44 49 0.63664100
## 45 50 0.46550970
## 46 51 0.31525143
## 47 52 0.31117065
## 48 53 0.64593438
## 49 55 0.36530480
## 50 56 0.29189219
## 51 57 0.61833668
## 52 58 0.40748990
## 53 59 0.62635709
## 54 60 0.63207561
## 55 61 0.68896551
## 56 62 0.65736085
## 57 63 0.64220560
## 58 64 0.76238721
## 59 65 0.69304272
## 60 66 0.73180822
## 61 67 0.80488195
## 62 68 0.75887046
## 63 70 0.59981382
## 64 71 0.77127999
## 65 72 0.72602129
## 66 73 0.56589351
## 67 74 0.32639956
HypsoBasinsOrder3$HypsoCurve
## Error: Aesthetics must be either length 1 or the same as the data (4489): label
mapview(bas3, zcol='cat', col.regions = 'blue', legend = FALSE) %>%
addStaticLabels(label = bas3$cat)
